Raw File
void OneFunc();
void TwoFunc();

int main()
{
  OneFunc();
  TwoFunc();
  return 0;
}
back to top