import std.stdio, std.conv, std.string, std.range, std.math, std.algorithm; void main() { auto input = readln.split.to!(ulong[]); auto L = input[0], K = input[1]; ((L / (2 * K) - (L % (2 * K) ? 0 : 1)) * K).writeln; }