13634 - Indentation Revenge   

Description

You're now in a bad mood since you quarreled with your best friend. 

Recently, you keep convince you that using semicolons for indentation is the best way to code in C. Although you have listed several benefits of using semicolons for indentation, your friend still can't understand the beauty of semicolon indentation, instead, he thinks you're crazy and refuse to read your code.

What's worse, your friend has secretly turned all your codes to space indentation while you were sleeping, which made you very angry. Now, your friend leaves his computer on his desk for dinner, and he forgot to lock his computer. It's a great chance to start your revenge.

Given lines of compilable C code. Currently, the code is indented by spaces, and now you want to rewrite this code using semicolons for indentation.

In other words, you are going to do the following operations:

  • For every single line, turned every prefix space into semicolons.
  • Remove the semicolon at the end of every line.
  • Add a line // surprise<3 at the last line of the whole code to taunt him (remember to print '\n' at the end of the line).

Input

 Lines of compilable C code, terminated by EOF.

Output

The code using your special coding style.

Sample Input  Download

Sample Output  Download

Tags

FlyHighHigh



Discuss