This is where I got stuck, trying to learn Python using web-course.
Write a program that takes a single input line of the form «number1»+
Answer
S = input() for position in range(0, len(S)): plus=S[position] if (plus!="+"): continue number1=int(S[0:position]) number2=int(S[position+1:len(S)]) print(number1+number2)