typecasting Python

a = "1235"
a = int(a)

print(type(a))
print(a + 5)
Coding boy Hasya