N, K = map(int, input(). split()) if N == K: print("Drew") elif (N == 0 and K == 1) or (N == 1 and K == 2) or (N == 3 and K == 0): print("Won") else: print("lose") # TODO: write code...