public class FormLetter {
	public static void main(String [] args) {
		printFormLetter("Mr.", "Gerald", "Weiss");
		System.out.println();
		System.out.println();
		printFormLetter("Professor", "David", "Arnow");
	}

	public static void printFormLetter(String salutation, String first, String last) {
		System.out.println("Dear " + salutation + " " + last + ","); 
		System.out.println();
		System.out.println("	Hello " + first + ", we would like to inform you of our new ");
		System.out.println("chain of coffee houses in your area, geared to people like you. ");
		System.out.println(first + ", for a limited time, you can receive your own ");
		System.out.println("membership card, entitling you to 10% off your first 5 purchases, as well as a ");
		System.out.println("host of special offers. So hurry up, " + first + " and reply today!");  
	}
}
