12365 - A Cute Jade Rabbit   

Description

The Jade Rabbit, also called the Moon Rabbit, is a rabbit that lives on the moon. In Chinese folklore, it is often portrayed as a companion of the moon goddess Chang's, constantly pounding the elixir of life for her.

In this assignment, your need to draw a cute jade rabbit with ascii text like sample output.

 (\   /)
 ( ^  ^)
c("")("")

This rabbit is made up of three lines :

The first line includes 4 whitespace , a pair of brackets (()), 1 left slash (\) and 1 right slash (/).

The second line includes 4 whitespace, a pair of brackets (()), 2 carets (^).

The third line includes 1 lower caser case c letter (c), two pair of brackets (())  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 rabbit in the problem description.

Sample Input  Download

Sample Output  Download

Tags




Discuss