import java.io.*;
public class TabASCII
{
public static void main(String[] argv)
{
byte[] b = new byte[(127-31)*2];
int index = 0;
for (int i = 32; i < 127; i++)
{
b[index++] = (byte) i;
// Afficher les données par 8 colonnes
if (i % 8 == 7) b[index++] = (byte) 'n';
else b[index++] = (byte) 't';
}
b[index++] = (byte) 'n';
try {
System.out.write(b);
}
catch (IOException ex) {
System.err.println(ex);
}
}
}