https://www.hackerrank.com/contests/kodamanwithothers/challenges/rolled-egg
解説
6個入りパックを2個か、12個入りパックを1個が最適なので、min(A*2,B)が答え。
int A, B; //--------------------------------------------------------------------------------------------------- void _main() { cin >> A >> B; int ans = min(A * 2, B); cout << ans << endl; }