12 lines
250 B
Java
12 lines
250 B
Java
package riko_gmail_com;
|
|
|
|
public class Poetry {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
String line = "The Heav'ns and all the Constellations rung";
|
|
|
|
System.out.print(line.substring(4,12));
|
|
|
|
}
|
|
} |