#include int main(void) { int a,b,i; scanf("%d %d",&a,&b); for(i=1; (a*i)>=b; i++){ printf("%d\n",i); } return 0; }