Run ID:117017
提交时间:2025-04-13 13:27:00
#include <iostream> 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; }