#32705: _ans


yp11151049@yphs.tp.edu.tw (901-26李文睿)


#include<bits/stdc++.h>
using namespace std;
int main(){
    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;
    }
    return 0;
}