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