1615: 序列升序

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

Description

输入一个序列,判断该序列是否升序。如果是升序,输出 yes,否则,输出 no。

Input

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

Output

yes or no.

Sample Input Copy

5
1 2 2 3 3

Sample Output Copy

yes