#45661: 這題不會的,小蜜蜂幫你?????????????


1121226@stu.wghs.tp.edu.tw (Arthur✨EC)


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