/*******************************************************
 * Lab 3 PreLab PlayWords.java
 * Author: Barbara Boucher Owens 
 * Date: September 2006
 * Modified by:
 * Version:
 * Date:
 */
import java.util.Scanner;

public class PlayWords{
  public static void main(String[]arg)
  {
     * Transform the name to all lowercase
     * and then print it out as pig Latin (putting
     * the first initial at the end of the name as an uppercase
     * followed by the letters ay.
     * barbara would become arbaraBay
     * Joe would become oeJay, as would JOE
     */




    /**
     * Create a Scanner for keyboard input
     * */

    /** Prompt the user for a word
     *
     */


    /**
     * Print out the word as input
     * Then printout the second half of the word follwoed
     * by the first half of the original word
     */


  }
}