N,K = map(int,input().split()) if N == K: res = "Drew" else: win_hand = {0:1,1:2,2:0} res = "Won" if win_hand[N] == K else "Lost" print(res)