/**
 * A simple class for experimenting with stack functions.
 *
 * @author Your Name
 * @version The Date
 */
public class K_SimpleStackTester
{
    /**
     * Read a sentence in from the user and then:
     *
     *  1. Print the words in the sentence in reverse order.
     *      (order. reverse in sentence the in words the Print)
     *      
     *  2. Print the letters in each word in reverse order, 
     *     while keeping the words in the original order.
     *      (tnirP eht srettel ni hcae drow ni esrever ,redro)
     *    
     * @param args
     */
    public static void main (String[] args)
    {
       String input = ValidatedInputReader.getString("Enter a sentence.", "");

    }    
}
