#include <stdio.h>

void function(int a, int b, int c, int d)
{
	printf("%d %d %d %d\n", a, b, c, d);
}

int main(void)
{
	int i=0;
	function(i++, i++, i++, i++);
	return 0;
}
