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