#include #include #include using namespace std; int main() { int l, k; cin >> l >> k; cout << (l % k ? l / (2 * k) * k : (l - 1) / (2 * k) * k) << endl; return 0; }