1567: 数字分类显示

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:296 Solved:46

Description

输入一个整数a,输出以下分类显示:
    (1) a小于10,printf("%d is less than 10.\n"a );
    (2) a是2位数,printf("%d is 10 to 100.\n"a ); 
    (3) a是3位数,printf("%d is 100 to 1000.\n"a );    
    (4) a是4位数,printf("%d is greater than 1000.\n"a );

例如,输入456 则显示: 456 is 100 to 1000.

Input

输入一个整数a ( 0=<a<10000)

Output

数字a对应如题意中描述的输出。

Sample Input Copy

456

Sample Output Copy

456 is 100 to 1000

HINT

 0=<a<10000