import java.util.Random;
public class MyClass {
public static void main(String args[]) {
Random rand = new Random();
int X = 8, N = 4;
while (N-- != 0) {
int tmp = X;
while (tmp-- != 0) {
System.out.print((char)(rand.nextInt(126 - 33 + 1) + 33));
}
System.out.println();
tmp = X;
}
}
}
/*
run:
|Q0"\**?
S4I`1J>m
'c|eNDXn
Nk*3\3na
*/