C++程序  |  10行  |  78 B

static int Static()
{
  return 1;
}

int CallStaticB()
{
  return Static();
}