using System;
namespace _015_排序_编程题
{
class Program
{
static void Main(string[] args)
{
char c = Convert.ToChar(Console.ReadLine());
// a-z
if (c >= 'a' && c <= 'z')
{
Console.WriteLine("你输入的是一个小写字母");
}
else
{
Console.WriteLine("你输入的 不是一个小写字母");
}
// 0-9 48-57 '0'-'0' '1'-'0'
if (c >= '0' && c <= '9')
{
Console.WriteLine(c - '0');
}
}
}
}