#32705: ans


yp11151049@yphs.tp.edu.tw (801-24)

School : 臺北市私立延平高級中學
ID : 197224
IP address : [203.72.178.1]
Last Login :
2024-05-27 17:51:24
e976. Will You Make it? -- HP CodeWars2019改編 | From: [203.72.178.2] | Post Date : 2022-10-28 13:44

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

 
ZeroJudge Forum