m,e = map(int,input().strip().split()) if m == e: print("Drew") elif m == 2: if e == 0: print("Won") else: print("Lost") elif e == m + 1: print("Won") else: print("Lost")