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