# Online Python compiler (interpreter) to run Python online. # Write Python 3 code in this online editor and run it. s = list(input().split()) x = "" for i in s: x+=i[0] x=x.upper() print(x)