题解 | #走方格的方案数#
走方格的方案数
http://www.nowcoder.com/practice/e2a22f0305eb4f2f9846e7d644dba09b
先找出规律,然后用factorial来解
import math
while True:
try:
n,m=map(int, input().split())
print(math.factorial(n+m)//(math.factorial(n)*math.factorial(m)))
except:
break