{{ rungPrompt }}
{{ hintMsg }}
Given these two objects, what does this multi-key compareTo return?
public int compareTo({{ className }} other) {
int cmp = Integer.compare(this.{{ primName }}, other.{{ primName }});
if (cmp != 0) return cmp;
return this.{{ refName }}.compareTo(other.{{ refName }});
}