Run ID:143256
提交时间:2026-01-11 19:30:15
#include <iostream> using namespace std; int main() { int a, b, c, d; cin >> a >> b >> c >> d; int price = a * 10 + b; int budget = c * 10 + d; int result = budget / price; cout << result << endl; return 0; }