My issue
what is wrong in my code
My code
#include <stdio.h>
int main() {
int t ;
scanf("%d",&t);
while(t--)
{
int n,x,p,s;
scanf("%d %d",&n,&x);
p=x/10;
s = p * n;
printf("%d\n",s);
}
}
Learning course: Algorithmic Problem Solving
Problem Link: https://www.codechef.com/learn/course/klu-problem-solving/KLUPS00/problems/DETSCORE