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