#include <signal.h>
main()
{
	printf("Begin\n");
	kill(getpid(),SIGTSTP);
	printf("Mid\n");
	kill(getpid(),SIGTSTP);
	printf("End\n");
	fflush();
}
