// No.63 ポッキーゲーム // https://yukicoder.me/problems/no/63 // #include using namespace std; int main() { int L, K; cin >> L >> K; cout << (L - 1) / (2 * K) * K << endl; }