well done.
Get rid of the "end" command and add "goto start".
And in the top of your code add a label "start:" and below that add "cls" command.Like this:
start:
cls
input "please enter first number :", first#
input "please enter +, - or / or * :", A$
input "please enter second number :", second#
If A$="+" then Answer# = first# + second#
if A$="-" then answer# = first# - second#
if a$="/" then answer# = first# / second#
if a$="*" then answer# = first# * second#
print answer#
print "press any key to quit"
wait key
goto start
It will erase all the inputs and start again.
CURRENT PROJECT: RETRO PAC-MAN