public class Example3 { 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.printf("%18s", "Height (inches): "); System.out.println(height); } }