diff --git a/Python/add_two_numbers.py b/Python/add_two_numbers.py new file mode 100644 index 00000000..09d09bcc --- /dev/null +++ b/Python/add_two_numbers.py @@ -0,0 +1,6 @@ +#solution +a = int(input()) +for i in range(a): + (n1, n2) = map(int, input().split(' ')) + ans = n1 + n2 + print(ans)