Run
import math n = 9 k = 4 result = math.comb(n, k) print('comb(n, k) :', result)
Output