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