#include <iostream>
using namespace std;
int main()
{
float a, b, c;
float suma, srednia;
cout << "Podaj liczbe a: "; cin >> a;
cout << "Podaj liczbe b: "; cin >> b;
cout << "Podaj liczbe c: "; cin >> c;
suma = a + b + c;
srednia = suma / 3;
cout << "Suma: " << suma << endl;
cout << "Srednia: " << srednia;
return 0;
}