| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 70250 | sh25_wangtaojie | 整数大小比较 | C++ | Accepted | 0 MS | 244 KB | 251 | 2025-10-17 15:16:29 |
#include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a>b) { cout<<">"; } else if(a=b) { cout<<"="; } else if(a<b) { cout<<"<"; } return 0; }