Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save e-tverdokhleb/c4b64042304ab0892ed1 to your computer and use it in GitHub Desktop.
Save e-tverdokhleb/c4b64042304ab0892ed1 to your computer and use it in GitHub Desktop.
public class main {
public static void main(String[] args) {
String s = "Education is the most powerful weapon witch you can use to change the world.";
String t = "An investment in knowledge pays the best interest.";
System.out.println(s.substring(52, 52 + 4) +
t.substring(17, 17 + 9) +" " +
s.substring(52 + 4, s.length()-1));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment