#include using namespace std; int main(){ int n, m; cin >> n >> m; int res = (n + m- 1) / n; cout << res << endl; }