#include <iostream>
using namespace std;

int x, y;

int suma_kwadrat()
{
	return x*x + y*y;
}

int main()
{
	cout << "Wprowadz dwie liczby calkowite" << endl;
	cin >> x >> y;
	
	cout << "Suma kwadratow liczb " << x << " i " << y << " wynosi " << suma_kwadrat();
	
	return 0;
}




