#include  <stdio.h>

main()
{
	int a, b, c;
	printf("hello, world\n");
	
	a = 3;
	b = 4;
	c = a + b;
	printf("%d + %d = %d\n", a, b, c);
}

