import std.algorithm, std.array, std.range; import std.string, std.conv; import std.math; import std.stdio, std.typecons; void main() { auto rd = readln.split.map!(to!int); auto l = rd[0]; auto k = rd[1]; int a; if (l % (k * 2) == 0) a = l / (k * 2) - 1; else a = l / (k * 2); writeln(k * a); }