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