1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
set age to 1 print "Enter your age: " input into age if age is 1: print First Birthday else if age is 12-19 print "Teenager" else if age is less than 12 print "Child" else if age is greater than 62 print "Senior" else print "Adult"