a = 2b = input('Input a number: ')print(a)print(type(b))int(b)print(a+int(b))print(type(b))类似这种代码,必须要在计算时用int()转换,然后计算完b还是字符串,有没有能让b一直为字符串类型的命令?