Can someone tell me how to complete this task? I really cannot get it! The question says: Implement public static void div (int a, int b). This method should divide the first number by the second number and display the result of a divided by B. The result displayed should be an integer. Requirement: The div method must divide a by B. The div method must show the result of the division. The main method should call the div method three times. The main method should not call the screen output method. The program should output three numbers: 2 1 0. One row per number.