import string S = input() for s in S: print(string.ascii_letters[(string.ascii_letters.find(s)+26) % 52], end='') print()