#include using namespace std; int main(){ long long a, b, s; cin >> a >> b; s = b / a; if(a * s < b) cout << s + 1; else cout << s; return 0; }