le = input() #字母 'a' if 65<=ord(le) and ord(le)<=65+25:#A-Z 范围 65-90 print( chr(ord(le)+32) ) else: print( le)