#include int main() { int a,b,ans=1,i; scanf("%d %d",&a,&b); if(a>b){ ans=1; }else{ for(i=1;ans*a>=b;i++){ ans++; } } printf("%d\n",ans); return 0; }