Determine The Age Program

Age= int(input(‘your age?=’))
if Age<=1: print(‘you are an infant’)
elif Age>1 and Age<13: print(‘you are a child’)
elif Age>=13 and Age<20: print(‘you are a teenager’)
elif Age>=20: print(‘you are an adult’)

Here is a representation of my program that I created with python the coding program I created determines what age group do you fall in when you input your age as shown in the example above for my program.