#include <unistd.h>
int main(int argc, char *argv[])
{
	while (1)
		sleep(3600);
	return 0;
}
