H,F=map(int,input().split())
if not H//F==0:
    print(H//F)
else:
    print(1)
print()