7119 - 求能被整除的最小整数
时间限制 : 1 秒
内存限制 : 128 MB
已知3个整数m、n、a,其中m<=n,求m到n中(包括m、n)能被a整除的最小整数,若m到n中没有能被a整除的数,则输出-1
输入
输入一行三个正整数m、n、a,1<=m<=n<=10^9,1<=a<=100
输出
m到n中(包括m、n)能被a整除的最小整数,若m到n中没有能被a整除的数,则输出-1
样例
输入
7 10 2
输出
8