#include #include #include main() { int a, b, c, d; srand((unsigned)time(NULL)); a = rand() % 9 + 1; b = rand() % 10; c = rand() % 10; d = a * 100 + b* 10 + c; printf("%d, %d and %d come to %d.\n", a, b, c, d); return(0); }