import java.util.Scanner;
public class SchoolDegree
{
public static void main(String[] args)
{
System.out.print("Please enter your school name: ");
Scanner in = new Scanner(System.in);
String schoolName = in.nextLine();
while (in.hasNextLine())
{
if (schoolName.equals("Syracuse"))
{
schoolName += ", aka CUUUUUSE.";
}
else if (schoolName.equals("Ohio"))
{
schoolName += ", aka NO SOUP FOR YOU.";
}
else schoolName += ", aka who?";
}
while (in.hasNextInt())
{
System.out.println("How can your school be a number?");
}
System.out.println("You attend " + schoolName);
}
}