#include using namespace std; int main() { int n, k; cin >> n >> k; cout << (n == k ? "Drew" : (n + 1) % 3 == k ? "Won" : "Lost") << endl; }