Help me in solving SQUATS problem

My issue

My code

#include <stdio.h>

int main(void) {

int T;
scanf("%d", &T);

for(int i=0; i<T; i++)
{
    int X;
    scanf("%d",&X);
    
    int product;
  
    product=X*15;
    
    printf("%d", product);
}
	return 0;
}


Problem Link: SQUATS Problem - CodeChef

@stutig
U have to print \n after each test case as well.