#include
#include
inline float function(int& a, int& b, int& c)
{
return (a+b+c) / 2;
}
int main()
{
int
a, b, c;
float P;
std::cout << "Введите значения A, B ,C: ";</p>
std::cin >> a >> b >> c;
P = function(a,b,c);
std::cout << std::endl << "Значение P = " << P;</p>
return 0;
}