blob: ccf21ce0d246b6c24581750de5af93267802c710 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
1. initial age = 0
2. print "Enter your age"
3. age = input
4. if age = 1, then print "First Birthday"
5. else if age between 12 and 19, then print "Teenager"
6. else if age less that 12, then print "Child"
7. else if age greater than 62, then print "Senior"
8. else print "Adult"
9. End
|