S , F = map(int , input().split()) if S % F == 0: print(int(S/F)+1) else : print((S//F)+1)