#include using namespace std; typedef unsigned long long ul; typedef signed long long ll; ul over = 1000000007; int main(void) { cin.tie(0); ios::sync_with_stdio(false); cout << fixed; int n, k; cin >> n >> k; if (n-k==-1 || n-k==2) cout << "Won" << endl; else if (n-k==1 || n-k==-2) cout << "Lost" << endl; else cout << "Drew" << endl; return 0; }