Help me in solving CLB062 problem

My issue

Expected statment wrong means

My code

#include <stdio.h>

int main() {
	// your code goes here
	int n;
	int i;
	printf("entre n \n");
	scanf("%d",&n);
	for(i=1;i>=10;i++) {
	printf("%d * %d =%d\n", n , i , n*i);
}



	



Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC14/problems/CLB062

here the code I corrected

#include <stdio.h>
int main() {
	// your code goes here
	int n;
	int i;
	printf("Enter the number:");
	scanf("%d",&n);
	for(int i=1;i<=10;i++){
	    printf("%d * %d = %d \n",n,i,n*i);
	}
	return 0;
}

the wrong statement is } of for loop which is not closed and the condition in for loop is not correct the correct conditon is i<=10