Meniu

#815 Lazi

#include <iostream>

using namespace std;

int main()
{
    int l,h,n;
    cin >>l>>h;
    n=h/l;
    cout <<n;
    return 0;
}