What will be the output of the following program?
public class Friend {
public static void main(String[] args) {
String quote = "A friend to all is a friend to none";
System.out.println(quote);
quote.toUpperCase();
System.out.println(quote);
quote.toLowerCase();
System.out.println(quote);
}
}