#33179: 不是瑞克搖


yp11151138@yphs.tp.edu.tw (908-33許劭頎)

學校 : 臺北市私立延平高級中學
編號 : 197089
來源 : [203.72.178.1]
最後登入時間 :
2025-06-13 17:36:28

#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;
}