提交时间:2025-02-26 17:02:30
运行 ID: 61235
#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; }