#33178: 想抄的都進來


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


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