n, k = map(int, input().split()) if (n == k): print("Draw") elif (n == 2 and k == 0 or n == 1 and k == 2): print("Won") else: print("Lost")