x,y = map(int,input().split()) if x == y: print("Drew") elif 10*x+y%4 == 0: print("Won") elif 10*x+y == 1: print("Won") else: print("Lost")