ans

062_lichangyi 2020-11-28 14:35:40 8 返回题目

#include <bits/stdc++.h> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; cout << 2 * (a * b + b * c + c * a) << endl; cout << a * b * c; return 0; }

{{ vote && vote.total.up }}