/** * author: stein * created: 2020.11.06 07:51:44 **/ #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); long long a, b; cin >> a >> b; cout << (a + b - 1) / a << endl; return 0; }