My issue
runtime error how to avoid it
My code
#include <stdio.h>
int main() {
int t;
scanf("%d",&t);
for(int i=1; i<=t;i++)
{
int x,y;
scanf("%d %d",x,y);
printf("%d \n",x-y);
}
// your code goes here
}
Problem Link: TAXSAVING Problem - CodeChef