Problem5510--整除问题 I

5510: 整除问题 I

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入三个正整数 $min,\ max,\ factor$,对于 $[min,\ max]$ 之间的每一个整数,如果它能被 $factor$ 整除,就把它打印出来。

Input

输入只有一行,包括三个整数 $min,\ max,\ factor,\ (1 \leq min,max,factor \leq 10^{18})$。

Output

输出只有一行,包括若干个符合要求的整数。

Sample 1 Input

1 10 3

Sample 1 Output

3 6 9

Sample 2 Input

5 15 1

Sample 2 Output

5 6 7 8 9 10 11 12 13 14 15

Sample 3 Input

1000 1020 2

Sample 3 Output

1000 1002 1004 1006 1008 1010 1012 1014 1016 1018 1020

Source/Category