using System; using System.Linq; class No48{ static void Main(){ var a=Int32.Parse(Console.ReadLine()); var b=Int32.Parse(Console.ReadLine()); var c=Int32.Parse(Console.ReadLine()); var d=0; if(b>0){ d+=(b%c==0)?b/c:b/c+1; }else if(b<0){ b=Math.Abs(b); d+=(b%c==0)?b/c+1:b/c+2; } if(b!=0){ a=Math.Abs(a); d+=(a%c==0)?a/c:a/c+1; } Console.WriteLine(d); } }