#P1206. Replacing Integer

Replacing Integer

Description

给定正整数 n,k,你可以进行任意多次操作,每次把 n 变为 n-k 的绝对值,问你能得到的最小的 n。

1≤n,k≤10^18

Format

Input

一行给出N,K

Output

如题

Samples

7 4
1