| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 29538 | lnx | 整数大小比较 | C++ | Accepted | 0 MS | 252 KB | 179 | 2023-10-31 18:44:10 |
#include<iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x>y) { cout<<">"; } if(x==y) { cout<<"="; } if(x<y) { cout<<"<"; } }