-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSolution.java
34 lines (26 loc) · 1012 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
31
32
33
34
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) {
// Create a Scanner object for reading input
Scanner sc = new Scanner(System.in);
// Read the two input strings A and B
String A = sc.next();
String B = sc.next();
// 1. Print the sum of lengths of A and B
int totalLength = A.length() + B.length();
System.out.println(totalLength);
// 2. Determine if A is lexicographically greater than B
if (A.compareTo(B) > 0) {
System.out.println("Yes");
} else {
System.out.println("No");
}
// 3. Capitalize the first letter of A and B and print them
String capitalizedA = A.substring(0, 1).toUpperCase() + A.substring(1);
String capitalizedB = B.substring(0, 1).toUpperCase() + B.substring(1);
System.out.println(capitalizedA + " " + capitalizedB);
// Close the scanner
sc.close();
}
}