# | Problem | Pass Rate (passed user / total user) |
---|---|---|
14736 | Chomusuke the Cat |
|
14737 | Temperature Conversions II |
|
Description
Megumin is curious to see how Chomusuke would appear on the computer screen.
Your task is to help her by printing out an ASCII art representation of the cat.
The output must match exactly (no extra spaces, lines, or characters), and do not print a newline after the last line.
It should look like this on your terminal:
Hint:
- Having problem printing apostrophe (
'
), quotation mark ("
), and backslash (\
)? Don't forget the escape characters: \', \", \\. - Getting Wrong Answer? Make sure you don't miss any whitespace (
- Use print("text you want to output", end="") to print without a newline.
Input
There is no input for this problem.
Output
Print the ASCII art of Chomusuke exactly as shown.
Sample Input Download
Sample Output Download
Tags
Discuss
Description
Write a program that converts a given temperature from Fahrenheit to Celsius.
The conversion formula is:
- $C = (F - 32) \div 1.8$
Where:
- $F$ is the input Fahrenheit temperature.
- $C$ is the resulting Celsius temperature.
You should convert the result into an integer using int()
.
Input
A single integer $F$ representing the temperature in Fahrenheit.
Constraints
- $-100 \leq F \leq 100$
Output
A single integer $C$ representing the equivalent Celsius temperature.