

実行時間制限: 2 sec / メモリ制限: 256 MiB
Problem
This contest is named CODE FESTIVAL 2014.
Though, Alice has too bad memory that she always forgets to put "2014" in it.
Help her by making a program that concatenates “2014” after any given string.
You are given a string S. Output the string S followed by a string “2014”.
Input
The input will be given in the following format from the Standard Input.
S
- On the first line, you will be given the string S (1 ≦ |S| ≦ 20).
- Each character in the string S will be an uppercase English alphabet letter.
Output
Output the string S with 2014
concatenated afterwards in one line. Make sure to insert a line break at the end of the output.
Input Example 1
CODEFESTIVAL
Output Example 1
CODEFESTIVAL2014
When you put 2014
after CODEFESTIVAL
, it will be CODEFESTIVAL2014
. Note that the given input will not have any whitespace in it.
Input Example 2
CHOKUDAI
Output Example 2
CHOKUDAI2014