#33178: 想抄的都進來


yp11151215@yphs.tp.edu.tw (ck11400703)

學校 : 臺北市立建國高級中學
編號 : 197195
來源 : [210.71.78.242]
最後登入時間 :
2025-09-10 09:04:20

include<bits/stdc++.h>

using namespace std;

main(){

int a,b,c;

while(cin>>a>>b>>c){

    if(a*c>=b) cout<<a<<" "<<b<<" "<<c<<". I will make it!";

else cout<<a<<" "<<b<<" "<<c<<". I will be late!";

cout<<endl;
}
}