提交时间:2025-12-11 21:36:48

运行 ID: 75914

#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; }