mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-13 07:38:47 +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))
|