#include using namespace std; int main() { int n,m; cin >> n >> m; int a = m / n; cout << a << endl; return 0; }