My issue
My code
T = int(input())
for i in range(T):
N, S = map(int, input().split())
print(N-(S-N))
Problem Link: CodeChef: Practical coding for everyone
T = int(input())
for i in range(T):
N, S = map(int, input().split())
print(N-(S-N))
Problem Link: CodeChef: Practical coding for everyone