Function Syntax

int sum(int a, int b)
{
	int r = a + b;
	return r;
}