Type-Casting

 If you want that you need to:

e = "31"
print(e+2)
Now u cannot add strings
But u trying again and again to add it
So let me tell u a trick that's called type casting how to use?
e = "31"
e = int(31)
print(e+2)