#include int main() { int a, b; scanf("%d%d", &a, &b); int i = 0; while (a * i < b) { i++; } printf("%d", i); return 0; }