86.8k views
1 vote
Can you solve this challenging activity?

Can you solve this challenging activity?-example-1
User Snowe
by
3.2k points

1 Answer

1 vote

Answer: See below

Step-by-step explanation:

user_age = int(input('Enter your age: '))

if user_age <= 18:

print('18 or less')

else:

print('Over 18')

User Roray
by
3.6k points