m = [["Drew", "Lost", "Won"], ["Won", "Drew", "Lost"], ["Lost", "Won", "Drew"]] n, k = map(int, input().split()) print(m[k][n])