#include <iostream>
#include <cmath>
using namespace std;
int main(){
//Підключаєм українську мову
int n;
cout << "Введіть сторону";
cin >> n;
cout << endl;
cout << "Периметр = " << 3 * n << endl;
cout << "Висота = " << (n * sqrt(3))/2;
return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main(){
//Підключаєм українську мову
int n;
cout << "Введіть сторону";
cin >> n;
cout << endl;
cout << "Периметр = " << 3 * n << endl;
cout << "Висота = " << (n * sqrt(3))/2;
return 0;
}