a,b = input().split() if a==b: print("Drew") exit() elif (a, b) in [("0", "1"), ("1", "2"), ("2", "0")]: print("Won") else: print("Lost")