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