1251: 【c05】字符类型判断▃if_else

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:21 Solved:14

Description

从键盘输入任意一个字符,判断是大写字母、小写字母还是数字。

1、如果是大写字母,输出“uppercase”;

2、如果是小写字母,输出“lowercase”;

3、如果是数字,输出“number”;

4、其他字符,输出“others”。

Input

输入一个字符。

Output

输出一行判断结果。

Sample Input Copy

A

Sample Output Copy

uppercase