#33176: CPP ANS


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

學校 : 臺北市私立延平高級中學
編號 : 197083
來源 : [203.72.178.2]
最後登入時間 :
2025-06-09 11:36:43

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