public class Main {
public static void main(String[] args) {
for (int a = 1; a < 36; a++) {
for (int b = 1; b < 36; b++) {
for (int c = 1; c < 36; c++) {
for (int d = 1; d < 36; d++) {
for (int e = 1; e < 36; e++) {
System.out.println(a + " " + b + " " + c + " " + d + " " + e);
}
}
}
}
}
}
}
Comments
Leave a comment