#include using namespace std; int main(void){ //input int a,b; cin >> a >> b; //calc int stair = a / b + 1; //output cout << stair; }