My issue
while submitting the solution status is coming that “time limit exceeded” so what to do next.
My code
#include <stdio.h>
int main() {
int n;
scanf("%d", &n);
for(int i = 0; i <= 12; i=i+1) {
while(i == n) {
continue;
}
printf("%d \n", i);
}
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone