#include <stdlib.h>
#include <stdio.h>
int
main(
void
)
{
i;
printf
(
"Ten random numbers from 0 to 99\n\n"
);
for
(i=0; i<10; i++)
"%d\n"
,
rand
() % 100);
return
0;
}