/* No.63 ポッキーゲーム https://yukicoder.me/problems/no/63 */ #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int l, k; cin >> l >> k; int yu = 0; l -= k; while (l > k) { yu += k; l -= k * 2; } cout << yu << endl; }