Help me in solving FLOW001 problem

My issue

can u please help in solving this problem

My code

#include <stdio.h>

int main(void) {
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%d",a+b);
	// your code goes here
	return 0;
}


Problem Link: FLOW001 Problem - CodeChef

@phaneendra2004
Plzz refer the following solution.

#include <stdio.h>

int main(void) {
	int T;
	scanf("%d",&T);
	int i=0;
	while(i<T) {
	    int A,B;
	    scanf("%d %d", &A,&B);
	    int Z=A+B;
	    printf("%d\n", Z);
	    i++;
	}
	return 0;
}