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