6 solutions
- 1
Information
- ID
- 532
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 1
- Tags
- # Submissions
- 52
- Accepted
- 42
- Uploaded By
#include<iostream>
using namespace std;
int main(){
int a,b;cin>>a>>b;
if(a>=10||b>=20) cout<<1;
else cout<<0;
return 0;
}
#include <iostream> using namespace std;
int main() { int a,b; cin>>a>>b; if(a>=10||b>=20)cout<<"1"; else cout<<"0"; }
两行战神
#include<iostream>
using namespace std;
int main(){
int a,b;cin>>a>>b;
if(a>=10||b>=20) cout<<1;
else cout<<0;
return 0;
}
```
#include <iostream>
using namespace std;
int main() {
int a,b;
cin>>a>>b;
if(a>=10||b>=20)
cout<<"1";
else cout<<"0";
}
#include using namespace std; int main() { int a,b; cin>>a>>b; if(a>=10||b>=20)cout<<"1"; else cout<<"0"; }
By signing up a ZXOJ universal account, you can submit code and join discussions in all online judging services provided by us.