#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n,k; cin >> n >> k; if (n == k) { cout << "Drew" << "\n"; } else if ((n+1)%3 == k) { cout << "Won" << "\n"; } else { cout << "Lost" << "\n"; } return 0; }