program ideone;
var
	x, y		:real;
	
begin

x := 135.34;
y := x * x;

writeln(' Y=', y:0:3);

end.