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