0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-05 12:18:48 +00:00
OI-codes/XJOI/problem/9205/9205.cpp

11 lines
187 B
C++

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