diff --git a/codeforces/A+B problem - 1351A.py b/codeforces/A+B problem - 1351A.py new file mode 100644 index 0000000..8cb3d75 --- /dev/null +++ b/codeforces/A+B problem - 1351A.py @@ -0,0 +1,5 @@ +#To print sum of 2 no's whose sum is b/w 1 and 1000 +for t in range(int(input())): + a, b = map(int,input().split()) + if a in range(-1001,1001) and b in range(-1001,1001): + print(a+b)