package hello; public class Greetings { public static void main(String[] args) { String greeting="Good morning"; String students="students"; System.out.println(greeting+" "+students); }//main }//Greetings