#include <stdio.h>

#include <time.h>


void delayy(clock_t timee)

{

static clock_t startt=clock();


if(clock()-startt<timee)

{

delayy(timee);

}

}


int main()

{

delayy(1000);


return 0;

}





나 뭐 잘못했어요?ㅠㅠ