0 Comments
Answer:
REM to print name and address of a person
CLS
INPUT " enter the name "; n$
INPUT " enter the address "; a$
PRINT " the name is "; n$
PRINT " the address is " a$
END