#-*- coding:UTF-8 -*- while True: n=raw_input() if n<"A" or n>"Z": pass else: n=ord(n)+32 n=chr(n) print n