//============================================================================ // Name : yuki264.cpp // Author : // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include using namespace std; int main() { int n, k; cin >> n >> k; if(n == k) { cout << "Drew" << endl; }else if(n+1 == k || n-2 == k) cout << "Won" << endl; else { cout << "Lost" << endl; } return 0; }