Skip to content
Snippets Groups Projects
00021.c 81 B
int
foo(int a, int b)
{
	return 2 + a - b;
}

int
main()
{
	return foo(1, 3);
}