age = int(input("Enter your age: "))
if age >= 18:
print("You are eligible")
else:
print("You are not eligible")
Next Lesson →
age = int(input("Enter your age: "))
if age >= 18:
print("You are eligible")
else:
print("You are not eligible")
Next Lesson →