import java.util.Scanner;

/**
 * CS312 Assignment 5.
 * 
 * On my honor, <NAME>, this programming assignment is my own work and I have
 * not shared my solution with any other student in the class.
 *
 * A program to play calculate the readability of text using the Flesch Reading Ease Test.
 *
 *  email address:
 *  UTEID:
 *  Unique 5 digit course ID:
 *  Number of slip days used on this assignment:
 */
public class Flesch {

    /* A program that calculates the Flesch Reading Ease Test 
     * for text entered by the user.
     */
    public static void main(String[] args) {
        // CS312 students, do not create any other Scanners besides this one.
        // Pass this is a parameter as necessary.
        Scanner key = new Scanner(System.in);
        
        // TODO CS312 students add your method calls here.
        
        key.close();
    }
}
