// Online Java Compiler
// Use this editor to write, compile and run your Java code online
class Main {
public static void main(String[] args) {
String[] a = { "a", "b", "c" };
String[] b = a;
a[0] = "A";
System.out.println("a = " + a.hashCode());
System.out.println("b = " + b.hashCode());
System.out.println("a[0] = " + a[0]);
System.out.println("b[0] = " + b[0]);
}
}