using namespace std; #include #define BEGIN ios_base::sync_with_stdio(0);cin.tie(0); #define END return EXIT_SUCCESS; #define FOR(I,A,B) for(int (I)=(A);(I)<(B);++(I)) #define ALL(C) (C).begin(),(C).end() inline void solve() { int N,K; cin>>N>>K; int r=(N-K+3)%3; string s; switch(r) { case 0:s="Drew";break; case 1:s="Lost";break; case 2:s="Won";break; } cout<