using System; public class Program { public static void Main(string[] args) { long x = System.Math.Abs(long.Parse(Console.ReadLine())); long y = System.Math.Abs(long.Parse(Console.ReadLine())); long l = long.Parse(Console.ReadLine()); long count = 0; // 前進する回数 if (x % l == 0) { count += x / l; } else { count += x / l + 1; } if (y % l == 0) { count += y / l; } else { count += y / l + 1; } // 方向転換する回数 if (y < 0) { count += 2; } else if (x != 0) { count += 1; } Console.WriteLine(count); } }