#include using namespace std; const int MAX_SIZE = 1e9; int a,b; int main(){ cin >> a>> b; if (b%a == 0){ cout << b/a << endl; }else { cout << b/a +1 << endl; } }