#include <stdio.h> int main() { int i; srand(time(0)); for (i=0;i<64;i++) { printf("%u ", rand()%512); } puts(""); return 0; }