0 Comments
Answer:
REM a program to find square of input number
CLS
INPUT " enter a number "; n
s = n * n
PRINT " square of number "; s
END