| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 3490 | OscarWLY | 整数大小比较 | C++ | Accepted | 0 MS | 248 KB | 190 | 2023-01-08 15:47:41 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; if(n>m) cout<<">"; else if(n==m) { cout<<"="; } else if(n<m) cout<<"<"; return 0; }