#P46. 练9.3 加四密码

练9.3 加四密码

Description

To encrypt the word ChinaChina, the encryption rule is to replace each letter with the 4th letter after it. For example, the 4th letter after AA is EE, so EE replaces AA. Therefore, ChinaChina should be encrypted as GlmreGlmre. Write a program that initializes variables c1c_1, c2c_2, c3c_3, c4c_4, and c5c_5 with the values CC, hh, ii, nn, and aa respectively, performs the encryption, and outputs the result.

Input Format

A string of length 55 (guaranteed that the 4th letter after each input letter exists).

Output Format

Output the encrypted result.

Sample

China
Glmre