from itertools import combinations n, d, k = map(int, raw_input().split()) for c in combinations(range(1, n+1), k): if sum(c) == d: print ' '.join(map(str, c)) exit() print -1