# When the white balloon hits the black balloon, then the white balloon
# Code up
# In the wrong , Come again
d = {}
for i in range(26):
d[chr(i + ord('A'))] = chr((i + 13) % 26 + ord('A'))
for j in 'You Never Fail to Fascinate Me':
print(d.get(j, j), end='')