00010 print "Enter two numbers:";
00020 input a,b
00030 if a=0 and b=0 then 100
00040 if a=1 or b=1 then 70
00050 print "At most one number was 0, and neither was 1"
00060 stop
00070 print "At most one number was 0, and at least one was 1"
00080 stop
00100 print "Both numbers were 0"
00110 end