一、题目要求 二、参考代码 s=[int(i) for i in input().split()] c=0 for i in range(4): if s[i]<s[4] or (max(s)-s[i])>s[5]: c+=1 t=i if c==0: print('Normal') elif c==1: print('Warning: please check #%d!'%(t+1)) else: print('Warning: please check all the tires!')