class Mat { public static void main(String[] argumentos){ double d=2.0; char c = 'a'; System.out.print(Math.pow(d,3)); c++; System.out.print(c); } }