Back to Problem List

Echo Twice


Print the input word twice, on separate lines!

INPUT FORMAT:

A string WW​ which represents the input word

OUTPUT FORMAT:

The input word WW twice on different lines​

SAMPLE INPUT:

cat

SAMPLE OUTPUT:

cat
cat

Write code below: