#abc085a. [abc085_a]Already 2018
[abc085_a]Already 2018
Problem Statement
On some day in January , Takaki is writing a document. The document has a column where the current date is written in yyyy/mm/dd
format. For example, January , should be written as 2018/01/23
.
After finishing the document, she noticed that she had mistakenly wrote 2017
at the beginning of the date column. Write a program that, when the string that Takaki wrote in the date column, , is given as input, modifies the first four characters in to 2018
and prints it.
Constraints
- is a string of length .
- The first eight characters in are
2017/01/
. - The last two characters in are digits and represent an integer between and (inclusive).
Input
Input is given from Standard Input in the following format:
Output
Replace the first four characters in with 2018
and print it.
Sample Input 1
2017/01/07
Sample Output 1
2018/01/07
Sample Input 2
2017/01/31
Sample Output 2
2018/01/31