Nested ifs

if age > 12:
   if age < 20:
     print('teenager')
   else:
      print('adult')
else:
   print('child')