public class Demonstrate {
 public static void main (String argv[]) {
  Movie m = new Movie();
  m.script = 8; m.acting = 9; m.directing = 6;
  Symphony s = new Symphony();
  s.music = 7; s.playing = 8; s.conducting = 5;
  System.out.println("The rating of the movie is " + m.rating());
  System.out.println("The rating of the symphony is " + s.rating());
 }
}
