main ()
{
	int a, b, c;

	printf ("Hello world\n");
	a = 1;
	b = 2;
	c = a + b;
	printf ("%d + %d = %d\n", a, b, c);
}
