csc-python-solutions/8/1 - Python Adder.py
2021-02-18 10:17:25 +01:00

4 lines
56 B
Python

S = input()
S = S.split("+")
print(int(S[0])+int(S[1]))