Answered
convert string to int/float
a=9 or "9" (not sure)
b= 4 or "4" (not sure=)
When summing them I am getting 49 or 94 instead of 13, you see..
How to ensure transforming them into numbers? When I tried int(a) I got the error: illegal use of int..
thanks
