class Primeiro { public static void main (String args[]) { int inteiro = 47; char caracter = 'F'; double real = 1.65; String frase = "Lucy Mari"; boolean VF = true; if (VF == true) { System.out.println("Eu sou o " + frase + " tenho " + inteiro + " anos, e tenho " + real + "m de altura"); } System.exit(0); } }