/ 
		
		Time Limit: 2 sec / Memory Limit: 1024 MiB
配点 : 100 点
問題文
英小文字と数字からなる文字列 S が入力されます。
S は 2023 で終わることが保証されます。
S の最後の文字を 4 に変更し、変更後の文字列を出力してください。
制約
- S は英小文字と数字からなる長さ 4 以上 100 以下の文字列
 - S は 
2023で終わる。 
入力
入力は以下の形式で標準入力から与えられる。
S
出力
答えを出力せよ。
入力例 1
hello2023
出力例 1
hello2024
hello2023 の最後の文字を 4 に変更すると、 hello2024 となります。
入力例 2
worldtourfinals2023
出力例 2
worldtourfinals2024
入力例 3
2023
出力例 3
2024
S が 2023 で終わることが保証されていますが、 S が 2023 そのものである場合もあります。
入力例 4
20232023
出力例 4
20232024
Score : 100 points
Problem Statement
You are given a string S consisting of lowercase English letters and digits.
S is guaranteed to end with 2023.
Change the last character of S to 4 and print the modified string.
Constraints
- S is a string of length between 4 and 100, inclusive, consisting of lowercase English letters and digits.
 - S ends with 
2023. 
Input
The input is given from Standard Input in the following format:
S
Output
Print the answer.
Sample Input 1
hello2023
Sample Output 1
hello2024
Changing the last character of hello2023 to 4 yields hello2024.
Sample Input 2
worldtourfinals2023
Sample Output 2
worldtourfinals2024
Sample Input 3
2023
Sample Output 3
2024
S is guaranteed to end with 2023, possibly being 2023 itself.
Sample Input 4
20232023
Sample Output 4
20232024