from math import ceil x=input() y=input() l=input() print(int(ceil(abs(float(x))/l)+ceil(abs(float(y))/l)+(2 if y<0 else 1 if x!=0 else 0)))