m,n = list(map(int,input().split())) nums = list(range(m+1)) res = 0 def backtrack(start, path, target): global res if len(path)==n and target==0: &nbs...