Help me in solving CLB086 problem

My issue

help

My code

#include <stdio.h>

int main(void) {
	int num[5] ={1,2,3,4,5} ;

	
	printf ("The first 5 integers are : ");
	for(int i = 0 ; i<5 ; i++)
	{
	printf("%d", num[i]);
	}
	printf("\n");
	return 0;
}


Learning course: Data structures & Algorithms lab
Problem Link: https://www.codechef.com/learn/course/muj-aiml-dsa-c/MUJADSAC05/problems/CLB086