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

int main( int argc, char* argv[] )
{
  proc( 1, 2, 3);
  return 0;
}
