import java.util.Scanner;
public class GMITProgram {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String schoolName = "G m Institute of Technology (GMIT)";
System.out.println("Enter your name: ");
String name = input.nextLine();
System.out.println("Welcome to " + schoolName + ", " + name + "!");
System.out.println("What is your major?");
String major = input.nextLine();
if (major.equalsIgnoreCase("computer science")) {
System.out.println("Great choice! " + schoolName + " has a strong computer science program.");
} else {
System.out.println("That's an interesting major. " + schoolName + " has a wide range of programs to choose from.");
}
input.close();
}
}