input Example
10 PRINT "Enter your name."
20 INPUT B$
30 PRINT "Enter your age."
40 INPUT A
50 PRINT "Hello ";B$&",";" you are";A;"years old."
60 END