thats the general idea of what i'm doing but i end up with this
print("How old are you?")
age = sys.stdin.readline()
time.sleep(2) #delay for 2 seconds
if age> 15: #if the age entered it oer 15 then
print("Welcome to Narnia, please follow me.")
else :
print("Please go home.")
TypeError: '>=' not supported between instances of 'str' and 'int'