#include int main(void){ int a,b,c; scanf("%d",&b); scanf("%d",&a); c=(a-(a%b)+b)/b; printf("%d\n",c); return 0; }