# coding: utf-8 X = int(input()) Y = int(input()) L = int(input()) res = 0 if Y < 0: res = res + 2 if X != 0 and Y >= 0: res = res + 1 x = abs(X) // L if abs(X) % L != 0: x = x + 1 y = abs(Y) // L if abs(Y) % L != 0: y = y + 1 res = res + x + y print(res)