package labtest1; import java.io.PrintStream; import java.util.Scanner; /** * An app that uses the President class. * * @author Franck van Breugel */ public class PresidentClient { public static void main(String[] args) { PrintStream output = System.out; Scanner input = new Scanner(System.in); output.print("Enter first name: "); String firstName = input.nextLine(); President president = President.getInstance(firstName, "Doe"); output.printf("President: %s%n", president); } }