Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
38840 | 奚晨瑞 | 点和正方形的关系 | C++ | Wrong Answer | 0 MS | 244 KB | 177 | 2024-01-28 17:17:16 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if((-2<=a&&2>=a)||(-3<=b&&b<=3)){ cout<<"yes"; } else{ cout<<"no"; } return 0; }