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