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