public class Demonstrate {
 // Define main:
 public static void main (String argv[]) {
  Movie m = new Movie();
  System.out.println ("The rating of the movie is " + m.rating());
 }
}
