14736 - Chomusuke the Cat   

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