| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72648 | sh25_zhuwy | 整数大小比较 | C++ | Accepted | 0 MS | 240 KB | 201 | 2025-11-02 13:39:33 |
#include<bits/stdc++.h> using namespace std; int main() { int x,y; cin>>x>>y; if(x>y) { cout<<">"; } else if(x==y) { cout<<"="; } else { cout<<"<"; } return 0; }