#include<stdio.h>

int main(void)
{
	int S, F;

	scanf("%d %d", &S, &F);

	printf("%d", (S / F) + 1);
	
	return 0;
}