/**
* Demo.java 
 */

public class Demo {
    public static void main(String argv[]) {
		// create a movie
		Movie m1 = new Movie("James Bond", 1982, 108);
		
		// create another movie
		Movie m2 = new Movie("The Incredibles", 2004, 115);
		
		// create a box set
		Movie box = Movie.boxSet(m1, m2, 2005);
		
		// print information about movies
		m1.print();
		m2.print();
		box.print();
    }
}