mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 15:18:46 +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…
Reference in New Issue
Block a user