Below is a list of the several causes of runtime error 1921.
1. Incomplete or corrupt download of TurboTax software.
2. Virus infection that has corrupted Turbo or windows system files.
3. Another program mistakenly deleted TurboTax-related files.
4. Corruption in windows registry.
Error 1921 can be caused by other factors. Therefore, it is recommended to run a troubleshooting procedure for each of the possible causes. In addition, you can close all running programs including TurboTax and restart your computer. This will probably fix the error.
Answer:
people = list(map(int, input().split())) # gets input and makes them into an integer
for i in range(len(people)):
if 0 <= people[i] <= 5:
print('Baby') # You didn't specify how you want to 'store' the info, but I'm just going to print it out
elif 6 <= people[i] <= 17:
print('Teen')
elif 18 <= people[i]:
print('Adults')
Explanation:
This is the basic structure of the code. This is written in Python 3x. If you are writing in a different language, then just use the template given to you!