#include using namespace std; #define int long long typedef vector vi; typedef pair pi; #define F first #define S second #define PB push_back #define MP make_pair #define popcount __builtin_popcountll int const MOD = 1e9 + 7; void swapp(int &a, int &b) { a = a ^ b; b = a ^ b; a = a ^ b; } int mul(int a, int b) { if (log10l(a) + log10l(b) > 18.3) return 3e18; return a * b; } #define forn(i, a, b) for (int i = a; i < b; i++) bool comp(pair a, pair b) { if (a.first == b.first) { return a.second > b.second; } return a.first < b.first; } void solve() { int a,b;cin>>a>>b; if(b%a == 0){ cout<<(b/a)<<"\n"; } else{ cout<<(b/a) + 1<<"\n"; } } signed main() { ios::sync_with_stdio(0); cin.tie(0); int t=1; // cin >> t; forn(i,0,t){ solve(); } return 0; }