Ответ:

var x,y:real;

Begin

  read(x);

  if x<=10 then y:= 210

  else y:= x*x*x;

 

  writeln(y);

End.