Given the following code snippet, what is the output?
class Container {
String label;
Container(String label) {
this.label = label;
}
}
Container c1 = new Container("A");
Container c2 = new Container("A");
System.out.println(c1.equals(c2));