#include int main(int argc, char *argv[]) { int a,b,ans; scanf("%d%d",&a,&b); ans=a/b+1; printf("%d",ans); return 0; }