/******************************************************************
 * Program Insert assignment number: Insert assignment name
 *
 * Programmer: Insert your name
 *
 * Due Date: Insert due date

 *
 * COMP 110-001        Instructor: Tyler Johnson
 *
 * Description: This program asks the user for his/her year in school
 *				and outputs whether the user is a Freshman, Sophomore,
 *				Junior, or Senior
 *
 * Input: Year in School
 *
 * Output: Freshman, Sophomore, Junior, or Senior

 *
 ******************************************************************/
 
 import java.util.Scanner;
 
 public class YearInSchool  {
 
 	public static void main(String[] args)  {
		
		int year = 0;

		Scanner keyboard = new Scanner(System.in);
	
		//Ask user for year in school
		System.out.println("Please enter your year in school.");
		
		year = keyboard.nextInt();
	}
 }