#include #include using namespace std; int main() { int x, y, l; cin >> x >> y >> l; int ans = 0; if (y < 0) { ans++; y = -y; } if (x != 0) { ans++; if (x < 0) x = -x; } ans += 2 + (y + x - 2) / l; cout << ans << endl; return 0; }