My issue
My code
#include <stdio.h>
int main(void) {
int x,y,t;
scanf("%d",&t);
// for(int i=0;i<t;i++){
scanf("%d %d",&x, &y);
if(y<=x){
printf("%d \n", x-y);
}
else
printf("%d \n", y-x);
// }
return 0;
}
Problem Link: PRACLIST Problem - CodeChef