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