0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 19:25:26 +00:00
OI-codes/S2OJ/1887/1887.py

6 lines
97 B
Python

from math import *
n, m = map(int, input().split())
print(comb(n + m, m) - comb(n + m, m - 1))