Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51590 | 张思存 | 收集瓶盖赢大奖 | C++ | Accepted | 0 MS | 248 KB | 196 | 2024-09-22 21:28:02 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin >> a >> b; if(a>=10 or b>=20){ cout<<"1"; }else{ cout <<"0"; } return 0; }