I guess I still remember Basic :blink:
1)
PRINT "Type in somewhat and press Return"
INPUT a$
PRINT a$
2)
PRINT "Type in the first number and press Return"
INPUT a
PRINT "Type in the second number and press Return"
INPUT b
PRINT a+b
PRINT a*b
PRINT a/b
PRINT a-b
3)
PRINT "Type in the first number and press Return"
INPUT a
PRINT "Type in the second number and press Return"
INPUT b
PRINT b
PRINT a
4)
PRINT "Type in length of side a"
INPUT a
PRINT "Type in length of side b"
INPUT b
PRINT "Area is" , a*b
PRINT "Circumfence is" , a+a+b+b
Was it this that you were thinging about?
I do not know if it runs, last time i programmed it is 15 years ago