Module: (Python) Subroutines. recursion


Problem

6 /12


Number of combinations

Problem

From the given numbers n and k (0<=k<=n) calculate \(C_n^k\) . Use  \(C_n^k=C_{n-1}^{k-1}+C_{n-1}^k\) to solve.

Write the solution as a function C(n, k).

Input: Integers n and k are entered.
Output: Output the answer to the problem.

Examples
# Input Output
1 4
2
6