csc-python-solutions/08/1 - Python Adder.py

4 lines
56 B
Python
Raw Normal View History

2021-02-18 09:17:25 +00:00
S = input()
S = S.split("+")
print(int(S[0])+int(S[1]))