竞赛
考级
挺简单的,list输入即可
百练
a=list(map(int,input().split(','))) for i in a: if i%2==0: print("圆形窗户") else: print("方形窗户")
WZA