| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75914 | sh25_shenpy | 比大小 | C++ | Wrong Answer | 0 MS | 244 KB | 232 | 2025-12-11 21:36:48 |
#include <bits/stdc++.h> using namespace std; long long a,b; int main() { cin >> a >> b; if (a>b) cout << "first"; else if (a<b) cout << "second"; else cout << "same"; return 0; }