import java.util.Scanner;
public class IfElse nested{
public static void main(String[] args){
Scanner input = new Scanner(System.in);
System.out.print("Please enter the score");
double score = input.nextDouble();
if(score < 10){
System.out.println("Congratulations on entering the finals ");
System.out.println("Please enter gender: ");
&nbs