m,n = map(int,input().split());
if m % n == 0:
    print(m//n)
elif m % n > 0:
    print(m//n + 1)
/**************************************************************
	Problem: 1030
	User: admin
	Language: Python
	Result: Accepted
	Time:86 ms
	Memory:34244 kb
****************************************************************/