first=input() split_first=first.split() S=int(split_first[0]) F=int(split_first[1]) if F<=S: print(int(S/F)+1) else: print(1)