2019-07-28
A - Dodecagon
#include<iostream> #include<cmath> using namespace std; int main() { int r; cin >> r; cout << 3 * pow(r, 2) << endl; }
std::pow