hands = input().split() hands = [int(i) for i in hands] if hands[0] == hands[1]: print("Drew") elif (hands[0] == 0 and hands[1] == 1) or\ (hands[0] == 1 and hands[1] == 2) or\ (hands[0] == 2 and hands[1] == 0): print("Won") else: print("Lost")