____________________
java
.
____________________
.
Scanner
;
____________________
Main
{
public
____________________
____________________
main
(
String
[
]
____________________
)
{
Scanner
dato
=
new
____________________
(
System
.
____________________
)
;
____________________
.
out
.
____________________
(
"
Introduce
el
password
"
)
;
String
____________________
=
____________________
.
____________________
(
)
;
if
(
pass
.
____________________
(
"
pc2101
"
)
)
{
System
.
out
.
println
(
"
Correcto
"
)
;
}
____________________
{
System
.
____________________
.
println
(
"
Incorrecto
"
)
;
}
}
}