#include using namespace std; int main() { int a, b; int n = 0; cout << "a = " << flush; cin >> a; cout << "b = " << flush; cin >> b; while (a * n <= b) { n++; } cout << n << endl; system("pause"); return 0; }