10 REM "Function definitions" 20 REM "" 100 DEF FNS(X)=X*X 200 INPUT "Input a number: ", N 210 PRINT "The square of the number is: "; FN S(N) 220 END