class Test { public static void main (String args[]) { System.out.println(10 + 20 + "Javatpoint"); System.out.println("Javatpoint" + 10 + 20); } }