#include #include #include using namespace std; int main(){ int x, y, l; cin>> x>> y>> l; int cnt = 0; if(y < 0){ cnt++; //to south y = -y; } while(1){ y -= l; cnt++; if(y<=0) break; } cout<< cnt<< endl; if(x!=0) cnt++; //to west OR to east if(x < 0) x = -x; while(1){ x -= l; cnt++; if(x<=0) break; } cout<< cnt<< endl; return 0; }