#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 with letters. Output the string putting a single space between the first letters and last letters in the string .
Constraints
- contains exactly letters.
- All letters in are uppercase English letters.
Input
The input is given from Standard Input in the following format:
Output
Print the string putting a single space between the first letters and last letters in the string . Put a line break at the end.
Sample Input 1
CODEFESTIVAL
Sample Output 1
CODE FESTIVAL
Putting a single space between the first letters and last 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