I wrote this simple code and tried to execute in Windows 10 CMD ... and it gets the error message :
TypeError: Can only concatenate str (not "int") to str
code :
userName = input('Name: ')
age = input('age: ')
factor = 2
finalAge = age + factor
print('In', factor, 'years you will be', finalAge, 'years old', userName+'!')
I am using Python 3.7.0 in Windows 10