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

int
main()
{
    long hz;

    hz = sysconf(_SC_CLK_TCK);
    if (hz == -1)
        perror("sysconf");
    else
        printf("%ld\n", hz);

    exit(EXIT_SUCCESS);
}
