标签:des blog http ar io os sp for strong
Description
Input
Output
Sample Input
Sample Output
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cmath> #include<cstdlib> #include<algorithm> #include<queue> #include<vector> #include<set> using namespace std; int n; int main() { while(scanf("%d",&n)!=EOF) { int t,sum; sum=0; while(n--) { scanf("%d",&t); sum=sum^t; } if(sum) printf("Win\n"); else printf("Lose\n"); } return 0; }
标签:des blog http ar io os sp for strong
原文地址:http://www.cnblogs.com/a972290869/p/4166266.html