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