name = input("name:")
encrypted = ""
for i in name:
    encrypted = encrypted + chr((ord('A') + ord(i) % 26) + 2)
print(encrypted)