My issue
what is the issue in this code
My code
#include <stdio.h>
int main() {
int n;
scanf("%d", &n);
for (int i = 1; i <= 2; i++) {
for (int j = 1; j <= 3; j++) {
if (j == 1 || j == 3) {
printf("*");
} else {
printf(" ");
}
}
printf("\n");
}
return 0;
}
Learning course: Algorithmic Problem Solving
Problem Link: https://www.codechef.com/learn/course/klu-problem-solving/KLUPS00A/problems/LPYAS164