public class Prepend { public static void main(String[] args) { String s = "world!"; System.out.println("Hello " + s); } }