**whoDat.bas

100 PRINT”Hi there children what is your name”
200 INPUT name$
300 IF name$=”Ahmed” THEN goto 500
350 IF name$=”Lev” THEN goto 600
400 PRINT “Nice Name”
450 GOTO 700
500 PRINT “You will be the Ruler of the World”
550 GOTO 700
600 PRINT “You are a school teacher, I have checked your records”
650 GOTO 700
700 PRINT “Have a great wonderful day for now”
800 END

 

whodatam01.bas

100 PRINT”Hi there children what is your name”
200 INPUT name$
300 IF name$=”Ahmed” THEN goto 500
350 IF name$=”Lev” THEN goto 600
400 PRINT “Nice Name”
450 GOTO 700
500 PRINT “You will be the Ruler of the World”
550 GOTO 700
600 PRINT “You are a school teacher, I have checked your records”
650 GOTO 700
700 PRINT “Have a great wonderful day for now”
800 END