when input it it says:
Traceback (most recent call last):
File "/Users/marco/PycharmProjects/pythonProject/goncas.py", line 4, in <module>
print("A pessoa que tem "+ idade2 +" e mais velha que a pessoa que tem "+ idade)
TypeError: cannot concatenate 'str' and 'int' objects
age = int(input("Insira a sua idade"))
age2 = int(input("Insira a outra idade"))
if age <= age2:
print("The person who has "+ age2 +" is older then the person that has "+ age)
elif age >= age2:
print("The person who has "+ age +" is older then the person that has "+ age2)
else:
print("Invalid data")