Help me in solving RCPITCP90 problem

My issue

I solve problem properly and output is also right so why program is become wrong by codechef

My code

#include <stdio.h>

int main() 
{  int num,i;
   scanf("%d",&num);
   for(i=1;i<=10;i++)
   {
       printf("%d×%d = %d\n",num,i,num*i);
   }
	
	return 0;

}


Learning course: Learn C Programming
Problem Link: https://www.codechef.com/learn/course/rcpit-programming-c/RCPITLPC14/problems/RCPITCP90

include <stdio.h>

int main()
{
int num, i;
printf(“Enter a number: “); // Optional user-friendly prompt
scanf(”%d”, &num);
for(i = 1; i <= 10; i++)
{
printf(“%d * %d = %d\n”, num, i, num * i); // Using ‘*’ for multiplication symbol
}
return 0;
}
this is the code . and it will work
you have used wrong operator for multiplication in %d %d