Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
19882 | 海瑧 | 整数大小比较 | C++ | Accepted | 0 MS | 244 KB | 290 | 2023-06-10 12:03:48 |
#include <iostream> using namespace std; int main() { int x, y; cin >> x >> y; if (x > y) { cout << ">" << endl; } else if (x < y) { cout << "<" << endl; } else { cout << "=" << endl; } return 0; }