split

Time limit: 0.05s Memory limit: 16MB Input: Output:

In order to teach Mihai to write figures neatly, his teacher gave him for homework to write several numbers. Because he was rushing to finish his homework as quick as possible so that he can play on the computer, he wrote the numbers so close that some of them were attached.

When his mother looked on Mihai’s notebook, she noticed this thing and she thought of a challenge for the little boy. She writes a number with an even number of digits and Mihai should split this number in two equal parts and should write the two numbers which are formed after this move.

This thing will help Mihai learn how to write numbers neatly in a funny way.

Task

Help Mihai find two numbers which form the number said by his mother, if we attach the second number at the end of the first one.

Input data

The first line of the input contains only one integer NN – the number told by Mihai’s mother.

Output data

The output contains two integers separated by space, the numbers which form the number told by Mihai’s mother.

Restrictions

  • 1N10181 \leq N \leq 10^{18}
  • NN has even number of digits.
  • All digits are different from 00.

Example 1

stdin

2341

stdout

23 41

Example 2

stdin

238445

stdout

238 445

Log in or sign up to be able to send submissions!