#include using namespace std; #define rep(i, l, r) for (int i = (l); i < (r); i++) #define bit(n, k) ((n >> k) & 1) typedef long long ll; typedef pair pii; void test_case(int tt){ int a,b; cin>>a>>b; cout<<(b+a-1)/a<<"\n"; } int main() { ios::sync_with_stdio(false); cin.tie(NULL); int t = 1; //cin>>t; rep(i, 1, t + 1) { test_case(i); } }