This commit is contained in:
2022-05-11 23:32:22 +02:00
parent 794e3777d1
commit 7d132a16f3

3
twosum.py Normal file
View File

@@ -0,0 +1,3 @@
a, b = map(int, input().split(" "))
print(a + b)