#include <iostream>
using namespace std;

int main () 
{
	float x1, x2;
	x1 = 1e200;
	x2 = x1 * x1;
	cout << x2 << endl;
	return 0;
}


