#include using namespace std; int X, Y, L; int main() { cin >> X >> Y >> L; int res = 0; if (Y > 0) { res += (Y - 1) / L + 1; } if (X != 0) { res += (abs(X) - 1) / L + 2; } if (Y < 0) { res += (abs(Y) - 1) / L + 2; if (X == 0) { res++; } } cout << res << endl; return 0; }