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