#include using namespace std; int main(){ int a,b; int ans; scanf("%d%d",a,b); ans = b/a; cout << ans << endl; return 0; }