#include int main(void){ int a,b,c; scanf("%d",&b); scanf("%d",&a); if(a%b==0){ c=a/b; } else{ c=a/b+1; } printf("%d\n",c); return 0; }