N, K = input().split() N, K = int(N), int(K) if N == K: print("Drew") if N == 0 and K == 1: print("Won") if N == 0 and K == 2: print("Lost") if N == 1 and K == 0: print("Lost") if N == 1 and K == 2: print("Won") if N == 2 and K == 0: print("Won") if N == 2 and K == 1: print("Lost")