#include <iostream>
using namespace std;
int x;
int main()
{
	cout << "Podaj x: ";
	cin >> x;
	cout << x << "^2=" << x * x << endl;
	return 0;
}




