#include #include using namespace std; int main() { int rot_no = 0; int move_no = 0; int x,y,l; cin >> x >> y >> l; if (x == 0) { if (y >= 0) rot_no = 0; else rot_no = 2; } else { rot_no = 1; if (y >=0) rot_no += 0; else rot_no += 2; } move_no = ceil(fabs(x)/(double) l) + ceil(fabs(y)/ (double) l) + rot_no; cout << move_no << endl; return 0; }