diff --git a/twosum.py b/twosum.py new file mode 100644 index 0000000..f143b86 --- /dev/null +++ b/twosum.py @@ -0,0 +1,3 @@ +a, b = map(int, input().split(" ")) + +print(a + b) \ No newline at end of file