#include<iostream>
using namespace std;

int main(){
	int s, f, fl = 1;
	cin >> s >> f;
	
	fl += s/f;
	cout << fl << endl;
}