#include #include int main() { int i; for (i=0; i<10; i+=1) { int x = random() % 100 + 1; printf("%d\n", x); } }