Run ID:43426
提交时间:2022-12-11 14:56:51
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)