def Comb(n,k): if k==0 or n==k: c= 1 else: c=Comb(n-1,k-1)+Comb(n-1,k) return c