x = gets.to_f y = gets.to_f l = gets.to_i ans = 0 if x != 0 ans += 1 end if y < 0 ans += 1 end ans += (x / l).abs.ceil ans += (y / l).abs.ceil puts ans