#include #include #include #include #include #include #include #include #define rep(i,p,n) for(int i=p;i using namespace std; int max(int x, int y) { int a; (x > y) ? a = x : a = y; return a; } int min(int x, int y) { int a; (x < y) ? a = x : a = y; return a; } int main() { int n, m; cin >> n >> m; if (n == m)cout << "Drew" << endl; else { if (n == 0 && m == 2)cout << "Lost" << endl; else if(n==2 && m==0)cout << "Won" << endl; if (n == 1 && m == 2) cout << "Won" << endl; else if(n==2 && m==1)cout << "Lost" << endl; if (n == 0 && m == 1)cout << "Won" << endl; else if(n==1 && m==0)cout << "Lost" << endl; } return 0; }