#include <stdlib.h>

int main() {
    srand(time(NULL));
    printf("%d", rand());
    
    return EXIT_SUCCESS;
}