/******************************************************************************
Online Java Compiler.
Code, Compile, Run and Debug java program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
public class Main
{
public static void main(String[] args) {
System.out.println("Hello, World!");
String text ="216 Kleopatra is visible in the dawn sky, rising at 23:11 (KST) and reaching an altitude of 52 \u00B0 above the south-eastern horizon before fading from view as dawn breaks around 03:51.";
System.out.println(text);
String[] textarr= text.split("\\D+");
for(int i = 0 ; i<textarr.length;i++){
System.out.println(textarr[i]+"\n");
}
}
}