#T1114. 分钱方案
分钱方案
Background
有n个人,它们需要分配m元钱(m>=n),每个人至少分1元,且每个人分到的钱必须是整数,请问有多少种分配方案?
Description
Given two integers x and y, print the sum.
Format
Input$ .
输入一行两个整数n和m
Output
输出分配方案数
Samples
5 10
126
Limitation
1s, 1024KiB for each test case.