#include using namespace std; int main() { int N, K; cin >> N >> K; if ((N + 1) % 3 == K) cout << "Won" << endl; else if ((K + 1) % 3 == N) cout << "Lost" << endl; else cout << "Drew" << endl; }