using System;
class Program
{
static void Main() {
char ch = 'q';
if (Char.IsUpper(ch)) {
Console.WriteLine("uppercase");
}
else if (Char.IsLower(ch)) {
Console.WriteLine("lowercase");
}
else if (Char.IsDigit(ch)) {
Console.WriteLine("digit");
}
else {
Console.WriteLine("not alphanumeric");
}
}
}
/*
run:
lowercase
*/