Control Flow

Thu 08 January 2026
age = int(input(10))
if age >= 10:
    print("you are allowed")
else:
    print("go home ")
10 1


go home
print("hello")

Score: 0

Category: maths