str1 = "abcdefghijklmnopqrstuvwxyz" str2 = "cqlmdrstfxyzbanopuvweghijk" s = str(input()) s = s.strip().translate(str.maketrans(str1, str2)) print(s)