Problem N: 箭头衔接数字

Problem N: 箭头衔接数字

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 53  Solved: 34
[Status] [Submit] [Creator:]

Description

输入一个整数 n。

输出一行,包含整数 1, 2, 3, ……, n,相邻整数间以一个 -> 衔接。  

Input

一个整数 n(2 ≤ n ≤ 100)。  

Output

输出一行,包含整数 1, 2, 3, ……, n,相邻整数间以一个 -> 衔接。

Sample Input Copy

5

Sample Output Copy

1->2->3->4->5