C++
#include <iostream>
using namespace std;
int main()
{
int E=0, a,b;
cin >> a >> b;
E=(a*a)+(b*b);
cout << E;
}
------------------------------------------------------------------------------------------
PSEUDOCOD:
citeste a,b ( numere intregi )
E <- ( a * a ) + ( b * b )
scrie E