#include using namespace std; int main(){ int L, K; cin >> L >> K; cout << (L - 1) / (K * 2) * K << endl; }