I am creating a simple Python program that asks for basic info about the user.
myAge= input() 
if myAge > 20:     
   print ('You must be old enough to party legally now.') 
else:     
   print ('Put that drink down!')  
MY ERROR
if myAge > 20: TypeError: '>' not supported between instances of 'str' and 'int'
 
     
     
    