Help me in solving CLB011 problem

My issue

#include<stdio.h>
printf(“Hellow”);
printf(“world\n”);
int main(){
}

Learning course: Learn C Programming
Problem Link: Rearrange Code in C Programming

You must use the printf statement inside the main() function so that the code is executed without any errors.

#include <stdio.h>
int main(){
printf("Hello\n");
printf("World");
}