kiểm tra xem một ký tự

View as PDF

Submit solution

Points: 0.10
Time limit: 1.0s
Memory limit: 64M
Input: stdin
Output: stdout

Authors:
Problem type

Viết chương trình để kiểm tra xem một ký tự là chữ cái, chữ số hay ký tự đặc biệt

Input

Input một dòng duy nhất là kí tự c

Nếu c là chữ cái, in ra "letter".

Nếu c là chữ số, in ra "number".

Nếu c là ký tự đặc biệt, in ra "special character".

Output
Output một dòng duy nhất là kiểu kí tự của c

Examples

Input

@

Output

special character

Input

A

Output

letter

Input

c

Output

letter

Input

9

Output

number

Comments

Please read the guidelines before commenting.


There are no comments at the moment.