11 lines
149 B
C
11 lines
149 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
int main(void)
|
|
{
|
|
srand(time(NULL) + 1);
|
|
printf("%d", (rand() % 0x5b + 10));
|
|
return 0;
|
|
}
|