A, B = map(int, input().split()) if A-B == 0 : L = "Drew" elif A-B == -1 : L = "Won" elif A-B == 2 : L = "Won" else : L = "Lost" print (L)