Bronze Ⅰ
Python
import math n , k = map(int, input().split()) print(math.factorial(n)//(math.factorial(n-k)*math.factorial(k)))