???
package ua.javarush.task.pro.task02.task0213;
/*
«Причешемо» резюме
*/
public class Solution {
public static void main(String[] args) {
String title = "Senior Lead Principal Software Engineer Data Architect";
String degree = "In college, I Majored in Political Science and Minored in Religious Studies.";
String career = "Experienced Team Leader with strong Organizational Skills and a Successful career in Management.";
String resume = "Senior Lead Principal Software Engineer Data Architect";
//String title2 = title.toLowerCase();
//String degree2 = degree.toLowerCase();
// String career3 = career.toLowerCase();
//String resume2 = resume.toLowerCase();
//напишіть тут ваш код
System.out.println("RESUME");
System.out.println("TITLE: " + title.toLowerCase());
System.out.println("DEGREE: " + degree.toLowerCase());
System.out.println("CAREER: " + career.toLowerCase());
}
}