Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
3496 | OscarWLY | 有一门课不及格的学生 | C++ | Accepted | 0 MS | 248 KB | 153 | 2023-01-08 16:03:55 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; if((n<60&&m>=60)||(n>=60&&m<60)) cout<<1; else cout<<0; }