#include using namespace std; int main() { int n,m; cin >> n >> m; int a = m / n; int b = m % n; if (b > 0) a++; cout << a << endl; return 0; }