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
Python 3.7 this will do what you want.
userName = input('Name: ') age = int(input('age: ')) factor = 2 finalAge = age + factor print("In", + factor, "years you will be", + finalAge, "years old " + userName + "!")