问题标题: 酷町堂:3593 fun函数

0
0
已解决
刘承志
刘承志
中级光能
中级光能

3593   fun函数经验值:2000

题目描述 Description

现在有一个新的函数fun(K,M),它的作用是求用数字0、1、2…、K-1组成的自然数中能被M整除的最小数。例如 K=2,M=7的时候,fun( 2 , 7 ) = 1001。现在给出任意的两个K,M,需要你求出fun(K,M)的值。

输入描述 Input Description

第1行为两个整数 K,M。

输出描述 Output Description

最小的数。

样例输入 Sample Input

2 7

样例输出 Sample Output

1001

数据范围及提示 Data Size & Hint

2≤K≤10,0≤M≤1000


0
0
0
0
我要回答