#include <iostream>
#include <ctime>
int main() {
srand(time(NULL));
int X = 10, N = 5;
while (N--) {
int tmp = X;
while (tmp--) {
std::cout << (char)(rand() % (126 - 33 + 1) + 33);
srand(rand());
}
std::cout << "\n";
tmp = X;
}
}
/*
run:
M<k<7|kkwA
C3"op^9Dyb
_pw%3TyX5X
%WmMr1Z^Ft
.Mv0]C?3=,
*/