N,K = map(int,input().split()) def result(x): if x == 3: return "Won" elif x == 4: return "Lost" else: return "Drew" if N == 0 and K == 1: x = 3 elif N == 0 and K == 2: x = 4 elif N == 0 and K == 0: x = 5 elif N == 1 and K == 2: x = 3 elif N == 1 and K == 0: x = 4 elif N == 1 and K == 1: x = 5 elif N == 2 and K == 0: x = 3 elif N == 2 and K == 1: x = 4 else: x = 5 show_result = result(x) print(show_result)