PY
py
1
2
3
4
5
6
7
8
#input your age
age = int(input())
if age>=18:
print("You are an adult.")
else:
print ("You are an child.")
#thank you for visiting my post
#that is my first python code
Enter to Rename, Shift+Enter to Preview
OUTPUT
Ejecutar