#include using namespace std; int main(){ int x,y,z = 1; cin >> x >> y; while((x*z)<=y){ z++; } cout << z; return 0; }