math 라이브러리의 factorial 함수 활용
import math n, k = map(int, input().split()) print(int(math.factorial(n)/(math.factorial(k)*math.factorial(n-k))))