tonumber (e [, base])
Tries to convert its argument to a number. If the argument is already a number or a string convertible to a number, then tonumber returns this number; otherwise, it returns nil.
number1 = "10"
number2 = "5"
print (number1, " + ", number2, " = ", tonumber (number1) +...