Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
61055 | fengxiaohang | 比大小 | C++ | Wrong Answer | 0 MS | 244 KB | 250 | 2025-02-21 20:35:30 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(min(a,b)==a&&min(a,b)!=b) cout<<"second"<<endl; else if(a==b) cout<<"same"<<endl; else cout<<"first"<<endl; }