#33165: Python: AC (0.1s, 3.3MB)


imlindora@gmail.com (Augus)

學校 : 不指定學校
編號 : 204528
來源 : [114.35.233.9]
最後登入時間 :
2024-03-24 11:13:49
e976. Will You Make it? -- HP CodeWars2019改編 | From: [114.35.134.31] | 發表日期 : 2022-12-07 19:47

while True:
    try:
        h,m,s=map(int,input().split())
        if m/s<=h:
            print(f'{h} {m} {s}. I will make it!')
        else:
            print(f'{h} {m} {s}. I will be late!')
    except:
        break
 
ZeroJudge Forum