#include <iostream>
using namespace std;
int main(){
int H, M, S;
while (cin >> H >> M >> S){
cout << H <<" "<< M <<" "<< S;
if (H*S>=M)
cout <<". I will make it!"<<endl;
else
cout <<". I will be late!"<<endl;
}