main.c
1
#include <stdio.h>
2
3
int main(void)
4
{
5
    printf("hello world");
6
	printf("hello world 2\n");
7
	
8
	int a = 0, b = 2;
9
	
10
	if(a < b)
11
	{
12
		printf("nonsense\n");
13
	}
14
	          
15
	
16
	
17
    return 0;
18
}