#codefestival2016qualAa. [codefestival_2016_qualA_a]CODEFESTIVAL 2016

[codefestival_2016_qualA_a]CODEFESTIVAL 2016

Problem Statement

This contest is CODE FESTIVAL. However, Mr. Takahashi always writes it CODEFESTIVAL, omitting the single space between CODE and FESTIVAL.

So he has decided to make a program that puts the single space he omitted.

You are given a string ss with 1212 letters. Output the string putting a single space between the first 44 letters and last 88 letters in the string ss.

Constraints

  • ss contains exactly 1212 letters.
  • All letters in ss are uppercase English letters.

Input

The input is given from Standard Input in the following format:

ss

Output

Print the string putting a single space between the first 44 letters and last 88 letters in the string ss. Put a line break at the end.


Sample Input 1

CODEFESTIVAL

Sample Output 1

CODE FESTIVAL

Putting a single space between the first 44 letters and last 88 letters in CODEFESTIVAL makes it CODE FESTIVAL.


Sample Input 2

POSTGRADUATE

Sample Output 2

POST GRADUATE

Sample Input 3

ABCDEFGHIJKL

Sample Output 3

ABCD EFGHIJKL