Run ID:43431

提交时间:2022-12-11 15:00:49

n=int(input()) arr=[] for i in range(n): res="" for j in input().split(): res+=j[0].upper() arr.append(res) for i in arr: print(i)