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