#33179: 不是瑞克搖


yp11151138@yphs.tp.edu.tw (801-34許劭頎)

學校 : 臺北市私立延平高級中學
編號 : 197089
來源 : [123.193.248.240]
最後登入時間 :
2024-04-25 17:06:38
e976. Will You Make it? -- HP CodeWars2019改編 | From: [203.72.178.1] | 發表日期 : 2022-12-08 17:17

#include<bits/stdc++.h>
using namespace std;
int main(){
    long long int h,m,s;
    while(cin>>h>>m>>s){
        if(h*s>=m)
        cout<<h<<" "<<m<<" "<<s<<". I will make it!"<<endl;
        else
            cout<<h<<" "<<m<<" "<<s<<". I will be late!"<<endl;
    }
    return 0;
}

 
ZeroJudge Forum