public class Movie {
 public int script, acting, directing;
 public int rating () {
  return script + acting + directing;
 }
}
