import java.io.*;

public class Switch

{

	public static void main(String args[])throws IOException 

	{

	  	int selection;
		//set up stream to read in integers
		//set up stream to read in integers
		BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		String s = new String();

		System.out.println("Enter number between 0 and 9 ");
		System.out.flush();
		s=in.readLine(); // Reads in the users input 
		selection = Integer.parseInt(s);

		switch ( selection )
		//Break exits the case statement

		{

			case 0 : System.out.println (" You picked 0 "); break;
			case 1 : System.out.println (" You picked 1 "); break;
			case 2 : System.out.println (" You picked 2 "); break;
			case 3 : System.out.println (" You picked 3 "); break;
			case 4 : System.out.println (" You picked 4 "); break;
			case 5 : System.out.println (" You picked 5 "); break;
			case 6 :  // dropping through ie no break
			case 7 :
			case 8 : System.out.println (" You picked 6,7 or 8 "); break;
			case 9 : System.out.println (" You picked  "); break;
			default : System.out.println (" You have picked a number out of the range 1 - 9 "); break;
		}// ends the case statement
	}// ends the main

}// ends the class

