using System; using System.Linq; class P { static void Main(string[] _) { int x = int.Parse(Console.ReadLine()); int y = int.Parse(Console.ReadLine()); int l = int.Parse(Console.ReadLine()); int n = x == 0 && y >= 0 ? 0 : x != 0 && y >= 0 ? 1 : 2; n += (int)Math.Ceiling(Math.Abs(x) / (double)l) + (int)Math.Ceiling(Math.Abs(y) / (double)l); Console.WriteLine(n); } }