#include using namespace std; int main() { int S; int T; cin >> S; cin >> T; cout << S/T+1 << endl; }