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