import std.algorithm, std.array, std.range; import std.string, std.conv; import std.math; import std.stdio, std.typecons; void main() { auto x = readln.chomp.to!int; auto y = readln.chomp.to!int; auto l = readln.chomp.to!int; auto n = 0; n += x.abs / l + (x % l == 0 ? 0 : 1); n += y.abs / l + (y % l == 0 ? 0 : 1); if (y < 0) n += 2; else if (x.abs > 0) n += 1; writeln(n); }