/*Importing a string of characters and printing the output */ public class Hello { public static void main (String args []) { System.out.println ("Hello, Welcome to my first JAVA Program!!"); System.out.println ("My Name is Ewald Heinz Uwe Beltz."); System.out.println ("My given name is Uwe."); System.out.println ("But - you can call me Ed."); } }