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