现在我的代码有点纠结。代码:
def main(a,b):
c=a+b
print("Your answer was: %s"% c)
input()
def launch():
print("Please set integer a and integer b!")
intA=input("Integer A: ")
intB=input("Integer B: ")
input("Press return to continue!")
main(intA, intB)
我需要帮助的是将 intA&intB 转换为 ACTUAL 整数。因为当我运行这段代码时,我得到:3030 ...如果有人能提供帮助,我将不胜感激!谢谢!:)