a,b = map(int,input().split()) c = a-b if c == 0: print("Drew") elif c == 1 or c == -2: print("Lost") else: print("Won")