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