| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 88922 | bnu_fanmeijie | 整数大小比较 | C++ | Accepted | 0 MS | 248 KB | 314 | 2026-05-21 18:41:01 |
#include <iostream> using namespace std; int main() { long long x, y; // 注意数据范围较大,用long long cin >> x >> y; if (x > y) { cout << ">" << endl; } else if (x == y) { cout << "=" << endl; } else { cout << "<" << endl; } return 0; }