import sys hands = [int(num) for num in sys.stdin.readline().split(" ")] d = "Drew" w = "Won" l = "Lost" j = [[d, w, l], [l, d, w], [w, l, d]] print(j[hands[0]][hands[1]])