Run ID:135348
提交时间:2025-11-03 17:02:50
#include<bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; int bought = b / a; int free = bought / 3; int total = bought + free; cout << total << endl; return 0; }