#include <unistd.h>

int main() {
    while (true) {
        sleep(0.5);
    }

    return 0;
}