import java.util.Scanner; public class Robot { static int x; static int y; static int l; static int x1 = 0; static int y1 = 0; static int count = 0; public static void main(String[] args) { Scanner scanner = new Scanner(System.in); x = scanner.nextInt(); y = scanner.nextInt(); l = scanner.nextInt(); x1 = 0; y1 = 0; //初期状態のまま進めない if(y < 0){ //回転してx方向へ移動 moveX(); //回転して-y方向へ count++; while( (y1 -= l) > y){ count++; } if((y1 += l) != y){ count++; } }else if(y > 0){ //回転せずy方向へ while( (y1 += l) < y){ count++; } if((y1 -= l) != y){ count++; } //回転してx方向へ移動 moveX(); }else{ //回転してx方向へ移動 moveX(); } System.out.println(count); } static void moveX(){ if(x == 0){ return; } count++; if(x<0){ while( (x1 -= l) > x){ count++; } if((x1 += l) != x){ count++; } }else if(x>0){ while( (x1 += l) > x){ count++; } if((x1 -= l) != x){ count++; } } } }