String mergeStrings(String str1, String str2) { if (str1.compareTo(str2) >= 0) { return str1 + str2; } else { return str2 + str1; } }