Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
61235 | jdf_chenjialin | 比大小 | C++ | Wrong Answer | 0 MS | 244 KB | 224 | 2025-02-26 17:02:30 |
#include <bits/stdc++.h> using namespace std; int a,b; int main() { cin >> a >> b; if (a>b) cout << "first"; else if (a<b) cout << "second"; else cout << "same"; return 0; }