Code to Save Lives

This commit is contained in:
2023-07-03 21:53:07 +02:00
parent 14a73c3463
commit e6d2456808

5
codetosavelives.py Normal file
View File

@@ -0,0 +1,5 @@
n = int(input())
for _ in range(n):
a = int(input().replace(" ", ""))
b = int(input().replace(" ", ""))
print(" ".join(str(a + b)))