h = [int(n) for n in input().split(" ")] d = "Drew" w = "Won" l = "Lost" j = [[d, w, l], [l, d, w], [w, l, d]] print(j[h[0]][h[1]])