S,F = map(int,input().split()) if S == F : print(2) elif S > F : P = S // F print(P + 1) else : print(1)