#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main(){
	struct timespec ts;
	ts.tv_sec = 5;
	ts.tv_nsec = 1;
	nanosleep (&ts, NULL);

}
