mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 08:38:49 +00:00
6 lines
97 B
Python
6 lines
97 B
Python
from math import *
|
|
|
|
n, m = map(int, input().split())
|
|
|
|
print(comb(n + m, m) - comb(n + m, m - 1))
|