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