#27534: _CPP


qgd20040229@gmail.com (时年)


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

  }

}