int b = 10;
boolean c = false;
System.out.println("The integer is " + b + " and the boolean is " + c)
The integer is 10 and the boolean is false