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