#include using namespace std; int main() { int S, F; cin >> S >> F; int tang = (S + F - 1) / F; cout << tang << endl; return 0; }