4190: 练86.3 货币系统
          Memory Limit:64 MB
          Time Limit:1.000 S
         
      
      
        
          Judge Style:Text Compare
          Creator:
      
      
          Submit:6
          Solved:6
      
Description
给你一个$n$种面值的货币系统,求组成面值为$m$的货币有多少种方案。
    Input
第一行为$n$和$m$。
      Output
一行,方案数。
        Sample Input Copy
3 10        //3种面值组成面值为10的方案
1           //面值1
2           //面值2
5           //面值5Sample Output Copy
10          //有10种方案