CodechefAug 28, 2025

MATH1 Enrolment

Hazrat Ali

Codechef

 A student interest survey was conducted by the admins and it was found that Y students were interested in taking up the MATH-1 course.

Find the minimum number of extra seats that the admins need to add into the MATH-1 course to make sure that every student who is interested in taking the course would be able to do so.

Input Format

  • The first line of input will contain a single integer T, denoting the number of test cases.
  • Each test case consists of two-space separated integers on a single line, X and Y — the current number of seats up for enrolment and the number of students interested in taking up the course in the upcoming semester, respectively.

Output Format

For each test case, output on a new line the minimum number of seats required to be added.

Constraints

  • 1≤T≤100
  • 1≤X,Y≤105

Sample 1:

Input
4
1 1
12 34
50 49
49 50
Output
0
22
0

Solution

t = int(input())   

for _ in range(t):
    x, y = map(int, input().split())   
    if y > x:
        print(y - x)   
    else:
        print(0)       




 

Comments