mirror of
https://github.com/tiennm99/claoj.git
synced 2026-06-17 22:48:09 +00:00
11 lines
192 B
C++
11 lines
192 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
|
|
int main() {
|
|
double a, b, c;
|
|
cin >> a >> b >> c;
|
|
|
|
cout << 4 * (sqrt(a * b / c) + sqrt(b * c / a) + sqrt(c * a / b));
|
|
return 0;
|
|
}
|