Hey everyone,
Just curious why my little program doesn't go through the if-statement I specified in it.
public static void main (String args[]){
Scanner sc = new Scanner(System.in);
System.out.println("Enter a value for girls:");
int GIRLS = sc.nextInt();
System.out.println("Enter a value for boys:");
int BOYS = sc.nextInt();
if (BOYS == 12 && GIRLS == 15){
System.out.print("Here we go, you're passing the test.");
} <<<<<<<<<<<<<<<<<< Not checking the condition. After I enter the values, it terminates.