提交时间:2025-07-07 14:12:11

运行 ID: 328708

n=int(input()) l=list(input().split()) a=0 for i in l: if 'a'<=i<='z' or 'A'<=i<='Z': a+=1 print(a)