using System;
public class Program
{
public static void Main()
Console.WriteLine("emter a charcter");
char ch=char.Parse(Console.ReadLine());
// if(ch>65&&ch<90)
if(ch >='A'&&ch <= 'Z')
Console.WriteLine("the number capital latter");
else
//if(ch>97 && ch<122)
if(ch >='a'&& ch <='z')
Console.WriteLine("the number is small later" );
Console.WriteLine("other number" );
}