mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2025-02-17 14:06:47 +00:00
parent
1f26e21ab0
commit
4b68402aaf
10
XJOI/problem/9205/9205.cpp
Normal file
10
XJOI/problem/9205/9205.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#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;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user