import sys for s in sys.stdin: s = list(map(str,s)) for i in range(len(s)): s[i] = ord(s[i]) s[i] = s[i]-7 s[i] = chr(s[i]) print(''.join(s))