/**
 * CS1101 Take-home Lab #2, Exercise 2: lab2Ex2.java
 * 
 * This program uses the Elevator class to create two
 * Elevator objects and read some input to instruct these
 * objects to move from one position to another.
 * 
 * Discussion group: <fill in your group number here>
 */

// add appropriate import statement(s)

class Lab2Ex2 {
    
    public static void main (String[] args) {
        
        Scanner scanner = new Scanner(System.in);

        // Create two Elevator objects
        
        // Get 1st instruction from user

        // Process instruction

        // Get 2nd instruction from user

        // Process instruction

        // Display results
    }
}


