a, b= map(int, input().split()) if a == b: print("Drew") elif (a + 1) % 3 == b: print("Won") else: print("Lost")