Problem1923--Johny Likes Numbers

1923: Johny Likes Numbers

Time Limit: 2 Sec  Memory Limit: 256 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

time limit per test
0.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Johny likes numbers n and k very much. Now Johny wants to find the smallest integer x greater than n, so it is divisible by the number k.

Input

The only line contains two integers n and k (1≤n,k≤109).

Output

Print the smallest integer x>n, so it is divisible by the number k.

Examples
Input
5 3
Output
6
Input
25 13
Output
26
Input
26 13
Output
39

Source/Category