#include using namespace std; typedef long long ll; typedef pair P; const int INF = 1e9; const int mod = 1e9+7; const double EPS = 1e-10; const double PI = acos(-1.0); int main() { int n,k; cin >> n >> k; int flag = 2; if(n == k) flag = 0; else{ int a[] = {0,1,2}; int b[] = {1,2,0}; for(int i = 0; i < 3; i++){ if(a[i] == n && b[i] == k) flag = 1; } } if(flag == 0) cout << "Drew" << endl; else cout << (flag == 1 ? "Won" : "Lost") << endl; return 0; }