N, K = map(int, input().split()) if (K-N)%3 == 1: print("Won") elif (K-N)%3 == 2: print("Lost") else: print("Drew")