#33176: CPP ANS


yp11151097@yphs.tp.edu.tw (908-30施耀登)


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