Usia input dalam 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