n, k = map(int, input().split()) if n == k: print("Drew") elif n > k: print("Lost") else: print("Won")