//{{{ #include using namespace std; //}}} int main(void){ int N, K; cin >> N >> K; string result; if((N + 1) % 3 == K) result = "Won"; if((N + 2) % 3 == K) result = "Lost"; if((N + 3) % 3 == K) result = "Drew"; cout << result << endl; return 0; }