You define the movieRating method as follows:
movieRating
public class Demonstrate { public static int movieRating (int s, int a, int d) { return s + a + d; } // Definition of main goes here }