Create 1 - Python Adder.py

This commit is contained in:
Lukas Baumann 2021-02-18 10:17:25 +01:00 committed by GitHub
parent 76e19b5b76
commit 4195fcf9e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
8/1 - Python Adder.py Normal file
View File

@ -0,0 +1,3 @@
S = input()
S = S.split("+")
print(int(S[0])+int(S[1]))