└── harmonic /harmonic: -------------------------------------------------------------------------------- 1 | import java.io.*; 2 | import java.util.*; 3 | 4 | public class Solution { 5 | 6 | public static void main(String[] args) { 7 | Scanner scanner = new Scanner(System.in); 8 | 9 | 10 | 11 | 12 | String inputPhrase = scanner.nextLine(); 13 | 14 | 15 | System.out.println("The cosmic resonance of your phrase unfolds: " + inputPhrase); 16 | 17 | } 18 | } 19 | --------------------------------------------------------------------------------