我有以这种形式编写的输入字符串:
S = 2222+576666
我需要帮助 for-loop 和“+”符号来提取“+”之前和之后的数字
for position in range(0,len(S)):
# Missing part of code I need help with to get desired solution
number1 = 2222
number2 = 576666
我不允许使用任何导入或任何花哨的函数,如 split() 或 raw_input()。