class Hello{ public static void main(String args[]) { System.out.println("Hello Hacktoberfest 2018"); String a = "Hello"; String b = "Hacktoberfest"; String c = "2018"; String d = " "; System.out.println(a+d+b+d+c); } }