Run ID:101977

提交时间:2024-12-21 10:51:43

#include <iostream> using namespace std; int main(){ int y,t; cin>>y>>t; if(y==0 && t==1 || y==1 && t==2 || y==2 && t==0) cout<<"winner:1"; else if(y==1 && t==0 || y==2 && t==1 || y==0 && t==2) cout<<"winner:2"; return 0; }