#include #define show(x) cout << #x << " = " << x << endl using namespace std; using ll = long long; using pii = pair; using vi = vector; template ostream& operator<<(ostream& os, const vector& v) { os << "sz=" << v.size() << "\n["; for (const auto& p : v) { os << p << ","; } os << "]\n"; return os; } template ostream& operator<<(ostream& os, const pair& p) { os << "(" << p.first << "," << p.second << ")"; return os; } constexpr ll MOD = 1e9 + 7; template constexpr T INF = numeric_limits::max() / 100; int main() { int x; int y; int l; cin >> x >> y >> l; if (x == 0 and y >= 0) { cout << (y - l + 1) / l << endl; return 0; } int round = 0; if (y < 0) { round = 2; } else { round = 1; } cout << round + (abs(x) + l - 1) / l + (abs(y) + l - 1) / l << endl; return 0; }