s ='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ch = input() #str if ch in s: res = chr( ord(ch) + 32 ) else: res = ch print(res)