| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77700 | sh25_shengmy | 整数大小比较 | C++ | Accepted | 0 MS | 248 KB | 254 | 2025-12-26 14:41:20 |
#include <iostream>; using namespace std; int main() { char X,Y; cin >> X >> Y; if(X>Y) { cout<<">"; } else if(X=Y) { cout <<"="; } else { cout<<"<"; } return 0; }