#include int main(){ int a,b; scanf("%d",&a);scanf("%d",&b); int hosu; if(b%a==0){ hosu=b/a; } else if(b%a!=0){ hosu=b/a+1; } printf("%d",hosu); }