Объяснение:
#include <iostream>
using namespace std;
int main()
{
int y,x;
cin >> x>>y;
if (x > y) {
cout << x * x;
}
else
cout << y * y;
Объяснение:
#include <iostream>
using namespace std;
int main()
{
int y,x;
cin >> x>>y;
if (x > y) {
cout << x * x;
}
else
{
cout << y * y;
}
}