12353 - C is for Cat   

Description

Your very first programming assignment is to print a cat :

 ^   ^      
(=-w-=)----?
  " "   " " 

This cat is made up of three lines :

The first line includes 10 whitespace ( ) and 2 carets (^).

The second line includes a pair of brackets (()), 2 equal signs (=), 6 hyphens (-), 1 lower case w letter (w), and 1 question mark (?).

The third line includes 8 whitespace ( ) and 4 quotation marks (").

Remember to put a new line character in the end of each line.

(gray dots represents whitespace characters)

Very Important Notes

  • Getting compile error? Having problem printing quotation mark (")? Maybe this link can help you.

  • Getting Wrong Answer? Make sure you don't miss any whitespace ( ) or new line (\n) character.

Input

This is no input for this problem.

Output

Print the cat in the problem description.

Sample Input  Download

Sample Output  Download

Tags




Discuss