You can use either built-in eval function or int function to convert char/string to integer to do arithmetic operations. Also, you can use str function to convert the numeric result back to string.
>>> int('22')+224>>> eval('23')+225>>> str(23)'23'