My issue
My code
// Complete the code
#include <stdio.h>
int main() {
int t;
int X;
int i = 1;
scanf("%d", &t );
while (i <= t){
scanf("%d", &X);
printf("%d",X*15);
}
return 0;
}
Learning course: C for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone