class Teste {
    public static void main(String[] args) {
        byte[] bytes = {(byte) 'a', (byte) 'b', (byte) 'c'};
        System.out.println(bytes);
        System.out.println(bytes.toString());
        byte[] bytes2 = {(byte) 'a', (byte) 'b', (byte) 'c'};
        System.out.println(bytes2);
    }
}