#P46. 练9.3 加四密码
练9.3 加四密码
Description
To encrypt the word , the encryption rule is to replace each letter with the 4th letter after it. For example, the 4th letter after is , so replaces . Therefore, should be encrypted as . Write a program that initializes variables , , , , and with the values , , , , and respectively, performs the encryption, and outputs the result.
Input Format
A string of length (guaranteed that the 4th letter after each input letter exists).
Output Format
Output the encrypted result.
Sample
ChinaGlmre
Related
In following homework: