Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
24285 | 老方 | 有一门课不及格的学生 | C++ | Accepted | 0 MS | 248 KB | 155 | 2023-08-10 12:55:37 |
#include<iostream> using namespace std; int main(){ int Chinese,maths; cin>>Chinese>>maths; cout<<(Chinese<60^maths<60); return 0; }