package gaga_gmail_com; public class Password { public static void main(String[] args) { String password = "correcthorsebatterystaple"; // Write the code: System.out.print(password.compareTo("correcthorsebatterystaple")); System.out.print(password.equals("correcthorsebatterystaple")); } }