#include using namespace std; int main() { int L; int K; cin >> L; cin >> K; int a = L; while (a > L / 2 + K) { a -= K; } cout << L-a; }