a,b =map(int,input().split())
while 1>0:
if a==0 and b==0:
break
if b > a-b :
b = a-b
sum =1
for i in range(1,b+1):
sum = sum*a/i
a-=1
print(int(sum))
a,b =map(int,input().split())
'백준 알고리즘 > 수학' 카테고리의 다른 글
백준 13241번 파이썬 (0) | 2018.10.03 |
---|---|
백준 1934번 파이썬 (0) | 2018.10.03 |
백준 2407번 파이썬 (0) | 2018.09.28 |
백준 1676번 파이썬 (0) | 2018.09.28 |
백준 10872번 파이썬 (0) | 2018.09.28 |