import math x = int(input()) y = int(input()) l = int(input()) res = 0 if x > 0 : res += 1 elif x < 0 : res += 1 x *= -1 if y < 0 : res += 1 y *= -1 res += math.ceil( x / l ) res += math.ceil( y / l ) print(res)