+ 6
According to your first condition, a child is a person that is older than 0 and older than 11.
What if the user enters 6? Wouldn't a 6 year old person be a child as well?
+ 1
In if-statement there's no range of numbers bigger or equal to 0 and bigger or equal to 11.
Example: You enter 6 as input. Not both conditions are true in if-statement: indeed age >= 0 is true but age >= 11 is false. The output is not "Child".
One more thing, if your input is bigger than 11, it always prints "Child". I may be wrong with it.