Âge d'entrée en python
# Take user input in python
age = int(input("Type the age: "))
if age <= 18:
print("You are too young to enter here")
YEASIN ARAFAT
# Take user input in python
age = int(input("Type the age: "))
if age <= 18:
print("You are too young to enter here")