#include typedef long long ll; const int INF = 1e9; const ll LINF = 1e18; const int MOD = 1e9 + 7; using namespace std; int main() { int n, k; cin >> n >> k; int x = (k - n + 3) % 3; if (x == 0) cout << "Drew" << endl; else if (x == 1) cout << "Won" << endl; else cout << "Lost" << endl; }