4 lines
56 B
Python
4 lines
56 B
Python
|
S = input()
|
||
|
S = S.split("+")
|
||
|
print(int(S[0])+int(S[1]))
|