s = input() for i in s: if (ord(i) >= ord('a') and ord(i) <= ord('z')): print(chr(ord(i) - 32), end="") else: print(i, end="")