fcn f(x) { x.abs().pow(0.5) + x.pow(3)*5 } reg ns; do{ ns=ask("11 numbers seperated by spaces: "); try{ ns=ns.split(" ").filter().apply("toFloat") } catch{} }while(not ns.isType(List) or ns.len()!=11); ns.reverse().apply(fcn(x){ fx:=f(x); "f(%7.3f)-->%s".fmt(x, if(fx>400)"Overflow" else fx) }) .pump(Console.println);