1616: 序列有序

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:8 Solved:6

Description

输入一个序列,判断该序列是否有序。如果是升序,输出 asc,如果是降序,输出desc,否则,输出 no。

Input

第一行序列的个数n, n<10000
第二行n个数字,用空格分隔。

Output

asc 、 desc or no.

Sample Input Copy

5
1 2 2 3 3

Sample Output Copy

asc

HINT

输入样例2:
5
5 4 4 3 1
输出样例2:
desc