I'm new to java and I wrote this code
import java.util.Scanner;
public class GamingJava {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        String Name;
        int password;
        String yEs;
        System.out.print("hello sir what is your name? ");
        Name = input.nextLine();
        System.out.print("what is your password? ");
        password = input.nextInt();
        System.out.println("your name was "+Name+" and your password was "+password);
        System.out.print("are you sure? ");
        yEs = input.nextLine();
        System.out.println(yEs);
    }
}
It only ask the name and the password, but Java doesn't ask the last one how did that happen?
 
     
    