#include using namespace std; int main() { int i, y; cin >> i >> y; if (i == y) cout << "Drew" << endl; else if (y == 0) { if (i == 2) cout << "Won" << endl; else cout << "Lost" << endl; } else if (y - i == 1) cout << "Won" << endl; else cout << "Lost" << endl; system("pause"); return 0; }