REM This is a simple Program. Can you Say what it does for each line? 10 CLS COLOR 6, 9 20 INPUT "What is your name"; name$ 30 CLS 40 INPUT "How old are you"; age 50 CLS PRINT "OK "; name$; ", you are "; age; " years old." IF age > 17 THEN PRINT "With age comes maturity." PRINT "Now lets get some important information to record" 60 INPUT "What is your favorite color"; color$ 70 INPUT "Who is your favorite singer"; singer$ 80 INPUT "What is your favorite sport"; sport$ 90 INPUT "Where do you live"; live$ COLOR 9, 12 CLS PRINT "Long, long ago, lived someone by the name of "; name$; "," PRINT "who lived in Anguilla in a village called "; live$ PRINT "and enjoyed listening to "; singer$; " and "; sport$; PRINT " on a "; color$; " radio." 120 END