#include using namespace std; int main() { int a = 0; int b = 0; int steps = 0; cin >> a >> b; while( b > 0 ) { steps++; b -= a; } cout << steps << endl; return 0; }