#include <iostream>
#include <Math.h>
using namespace std;
int main()
{
int x, y, z, s, r;
cout << "Introduceti numerele intregi x, y, z: ";
cin >> x;
cin >> y;
cin >> z;
s = x + y + z;
r = sqrt(x + y + z);
cout << "Suma numerelor introduse : ";
cout << s;
return 0;
}