#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int64_t X, Y, L; cin >> X >> Y >> L; int res = 0; if (Y < 0) res++; if (X != 0) res++; res += (abs(X) + L - 1) / L; res += (abs(Y) + L - 1) / L; cout << res << '\n'; return 0; }