 /*****************************************************************
 * Lab 3: ThreeNumbers
 * Programmer: Insert your name
 * 
 * Due Date: Insert due date
 * Class: COMP 110-01         Instructor: Tyler Johnson
 *         
 * Pledge: I have neither given nor received unauthorized aid
 * on this program.     (signature on file)
 *
 * Description: This program asks the user to enter in three integers.
 *				It then print whether all three number are equal,
 *				two numbers are equal, or none of the numbers are
 *				equal.
 *
 * Input: Three integers a,b,c
 *
 * Output: The relationship between the three numbers
 *
 ******************************************************************/

import java.util.Scanner;

public class ThreeNumbers {

	public static void main(String[] args)  {
			
		int a, b, c;
		
		Scanner keyboard = new Scanner(System.in);
		
		//Ask user for three integers a,b,c
		System.out.println("Enter three integers on a line, separated by spaces.");
		
		a = keyboard.nextInt();
		b = keyboard.nextInt();
		c = keyboard.nextInt();
		
		//print out some information about the three numbers
		
		//YOUR CODE HERE
	}
}