int add(int a, int b)
{
  int c = a + b;
  return c;
}

void main()
{
  int x = 3;
  int y = 5;
  int z = add(x, y);
  return;
}