This is my code
Name=input("Hi please enter your name: ")
print("Hi " + Name)
Age=input(Name + " could you please Enter your age: ")
if Age > 40:
    print(" Wow you are so old")
if Age < 18:
    print("Wow you are so you")
When I try to run it is gives me an error that '>' not supported between instances of 'str' and 'int'
 
    