l, r, n = gets.chomp.split.map(&:to_i) v = r - l + 1 ans = [v / n] * n ans[v % n] += 1 puts ans