#include using namespace std; int main(){ int a[2]; int b = 0; int c = 0; cin >> a[0]; cin >> a[1]; while (b < a[1]) { b += a[0]; c++; } cout << c << endl; return 0; }