public class Movie {
 public int script, acting, directing;
 public static int movieRating (int s, int a, int d) {
  return s + a + d;
 }
}
