X = gets.to_i Y = gets.to_i L = gets.to_i if Y == 0 rotation = 0 elsif Y < 0 rotation = 2 else rotation = 1 end puts (X.to_f / L).abs.ceil.to_i + (Y.to_f / L).abs.ceil.to_i + rotation