import java.util.*;

class TestSwitch02
{
	public static void main(String[] args) 
	{
		//���������������Ӣ��
		Scanner sc = new Scanner(System.in);
		//����
		System.out.println("��������123");
		//���÷���
		int number =  sc.nextInt();
		
		//�ж�
		//switch
		switch(number){
			case 1:
				System.out.println("one");
			break;
			case 2:
				System.out.println("two");
			break;
			case 3:
				System.out.println("three");
			break;
			default:
				System.out.println("error");
			break;
		
		}

		//�ر�
		sc.close();
		

		//ʹ��switch-caseʵ�֣���ѧ���ɼ�����60�ֵģ�������ϸ񡱡�����60�ֵģ���������ϸ񡱡�
		//����if 
		//����ֵ case 1 - 60  >  68 6  ����60 �� 1 �Ƚ� 



	}
}