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