-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Solution.java
30 lines (24 loc) · 855 Bytes
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// github.com/RodneyShag
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
/* Save input */
Scanner scan = new Scanner(System.in);
String A = scan.next();
String B = scan.next();
scan.close();
/* Sum lengths */
System.out.println(A.length() + B.length());
/* Compare lexicographical ordering */
System.out.println(A.compareTo(B) > 0 ? "Yes" : "No");
/* Print the Strings in desired format */
System.out.println(capFirstLetter(A) + " " + capFirstLetter(B));
}
private static String capFirstLetter(String str) {
if (str == null || str.length() == 0) {
return "";
} else {
return str.substring(0,1).toUpperCase() + str.substring(1);
}
}
}