public class Example2 { public static void main(String [] args) { // JT: A good idea to initialize when declaring int birthMonth = 11; double height = 69; System.out.print("Birth (Month): " + birthMonth); System.out.println("Height (inches): " + height); } }