|
|
back to boardwhy wa it's ok verious input #include<bits/stdc++.h> using namespace std; int main(void) { int t_h,s_h,pb; while(cin>>pb) { s_h=0,t_h=0; if(pb>=1 && pb<=11) { s_h=12-pb; t_h=s_h*45; if(t_h<=240) cout<<"Yes"<<endl; else cout<<"No"<<endl; } } return 0; } |
|
|