/**
 * CS1101 Take-home Lab #3, Exercise 1: Lab3Ex1.java
 * 
 * This program uses the FortuneCookie class.
 * It reads an integer and creates a FortuneCookie object
 * with the value and corresponding fortune cookie.
 * 
 * Discussion group: <fill in your group number here>
 */

// add appropriate import statement(s)

class Lab3Ex1 {

    public static void main(String[] args) {

        // Read input
        // fill in your code below
        int number;


        // Create FortuneCookie object
        FortuneCookie fc = new FortuneCookie();
        fc.setValue(number);

        // Retrieve cookie from object and display it
        // fill in your code below

    }                

}


