public class Movie {
 // Define class variables:
 public static int wScript = 6, wActing = 13, wDirecting = 11;
 // Define movieRating:
 public static int movieRating (int s, int a, int d) {
  return wScript * s + wActing * a + wDirecting * d;
 }
}
