#include <stdio.h>

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

int main(void)
{
  int z;
  
  z = f(3,5);
  printf("%d\n",z);
  return 0;
}
