Program w;
uses crt;
var x,y:real;
BEGIN
writeln('vvedite x');
readln(x);
y:=abs(x)+sqr(sqr(x));
writeln('otvet y ',y:6:2);
readln;
END.