#include <iostream>
#include <ctime>
int main() {
srand(time(NULL));
int X = 8, N = 4;
while (N--) {
int tmp = X;
while (tmp--) {
std::cout << (char)(rand() % (126 - 33 + 1) + 33);
srand(rand());
}
std::cout << "\n";
tmp = X;
}
}
/*
run:
brLkn4@r
=5@gG"cd
!)5C\K5R
vn{L8eA~
*/