#include <stdio.h>

int f(x, y, z)
  int x;
  int y;
  int z;
{
	return x + y + z;
}


int main(void) {
	printf("%d\n", f(1, 2, 3));
	return 0;
}
