Help me in solving FIT problem

My issue

I don’t understand how to print all the test cases output

My code

#include <stdio.h>

int main(void) {
	// your code goes here
	int x,n,m;
	scanf("%d%d",&x,&m);
	n=x;
	printf("%d",n);
	return 0;
}


Learning course: Basic Math using C
Problem Link: CodeChef: Practical coding for everyone

include <stdio.h>

int main(void) {
// your code goes here
int t; // t is the test cases
scanf(“%d”,&t);
for(int i=0; i<t; i++){
int x;
scanf(“%d”,&x);

     printf("%d",x*2*5); //from office to home n home to office, it will be 2*x
         // and 5 days a week means 2*x*5
    }
return 0;

}