Run ID:43399
提交时间:2022-12-11 14:08:19
n=int(input()) yuan={'a':1,'e':1,'i':1,'o':1,'u':1} arr=[] for i in range (n): a=input() arr.append(a) for i in arr: for j in i: if j.lower() in yuan: print(j.upper(),end="") else: print(j.lower(),end="") print("")