竞赛
考级
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a>=90&&b>=90) cout<<"yes"; else cout<<"no"; return 0; } 点个赞吧
DESE.RE君(互关)
#include<iostream> using namespace std; int main(){ int chinese, math; cin >> chinese >> math ; if(chinese>=90&&math>=90){ cout<< "yes" <<endl; }else { cout << "no" <<endl; } return 0; }
复仇者----实体303
#include<iostream> using namespace std; int main(){ int c, m; cin >> c >> m; if(c>=90&&m>=90){ cout<< "yes" <<endl; }else { cout << "no" <<endl; } return 0; }
LS_YZY
AC是最好的
无敌的鳖佬仔给老爷爷猜猜被
153****1913
提交答案之后,这里将显示提交结果~