#include <iostream>
#include <cmath>
using namespace std;
int main(){
double a, b;
cin >> a >> b; // вводим через пробел
cout << "c = " << pow(a, 2) + pow(b, 2);
return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main(){
double a, b;
cin >> a >> b; // вводим через пробел
cout << "c = " << pow(a, 2) + pow(b, 2);
return 0;
}