//Name Carlos Manuel Torres Jr. //Section 6769 //Partner Brian Frost // P0.java - A simple program from Activity 1.1.2, named CompleteName, which // prints to the console my first and last name on the same line. class CompleteName { // class declaration named CompleteName public static void main(String args[]) { // commencement of main method System.out.println("Carlos Torres"); } }