#46239: 通通交給內建函數


ck11200428@gl.ck.tp.edu.tw (ck11200428張毓軒)

學校 : 臺北市立建國高級中學
編號 : 310125
來源 : [122.116.111.175]
最後登入時間 :
2025-08-28 22:07:10

import math,sys
from math import factorial
for line in sys.stdin:
m,n = map(int,line.split())
print(factorial(m)//(factorial(n)* factorial(m-n)))