Problem1217--敲N

1217: 敲N

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

输出M和M的倍数,还有包含M的数字例如7(7,14,17..)

Input

一个整数N和M。(N不大于30000)

Output

统计出不大于N的与M有关的数字的个数。如20以内与7有关的数为7、14、17共3个。

Sample Input Copy

20 7

Sample Output Copy

3

Source/Category