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);
System.out.println(quote.toUpperCase());
System.out.println(quote.toLowerCase());
}
}