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
You add a string to an int, because the input() function returns a string. Use int(input('age: ')).
input()
int(input('age: '))