#include <stdio.h>
main()
{
  puts("Begin fork test.");
  fork();
  puts("End fork test.");
}
