strbox = input()
num = ord("*") - ord(strbox[0])
strbox =[chr(ord(x)+num) for x in list(strbox)]
print("".join(strbox))