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