RT
public class scannerAndconsol { public static void main(String[] args) {
// TODO Auto-generated method stub

Console cons =System.console();
String psw = new String(cons.readPassword());
System.out.println(psw);
}}