A - CODEFESTIVAL 2016 Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 100

問題文

このコンテストの名前は CODE FESTIVAL です。 しかし、高橋君はいつも CODEFESTIVAL と書き間違えてしまいます。 つまり、CODEFESTIVAL の間の半角スペースを省いてしまいます。

そこで高橋君は、省いてしまった半角スペースを復元するプログラムを作ることにしました。

長さ 12 の文字列 s が与えられます。 s の前半 4 文字と後半 8 文字の間に半角スペースを 1 つ挿入し、出力してください。

制約

  • s は長さ 12 である。
  • s は英大文字のみからなる。

入力

入力は以下の形式で標準入力から与えられる。

s

出力

s の前半 4 文字と後半 8 文字の間に半角スペースを 1 つ挿入し、出力せよ。 出力の末尾には改行を入れること。


入力例 1

CODEFESTIVAL

出力例 1

CODE FESTIVAL

CODEFESTIVAL の前半 4 文字と後半 8 文字の間に半角スペースを 1 つ挿入すると、CODE FESTIVAL となります。


入力例 2

POSTGRADUATE

出力例 2

POST GRADUATE

入力例 3

ABCDEFGHIJKL

出力例 3

ABCD EFGHIJKL

Score : 100 points

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 s with 12 letters. Output the string putting a single space between the first 4 letters and last 8 letters in the string s.

Constraints

  • s contains exactly 12 letters.
  • All letters in s are uppercase English letters.

Input

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

s

Output

Print the string putting a single space between the first 4 letters and last 8 letters in the string s. Put a line break at the end.


Sample Input 1

CODEFESTIVAL

Sample Output 1

CODE FESTIVAL

Putting a single space between the first 4 letters and last 8 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