If you enter 2 3 3, when you run this program, what will be…

If you enter 2 3 3, when you run this program, what will be the output?import java.util.Scanner;public class Test1 { public static void main(String[] args) {  Scanner input = new Scanner(System.in);  System.out.print(“Enter three numbers: “);  int number1 = input.nextInt();  int number2 = input.nextInt();  int number3 = input.nextInt();  // Compute average  double average = (number1 + number2 + number3) / 3;  // Display result  System.out.println(average); }}