#Basic9. Build a Tree
Build a Tree
Background
Arahc 在树这一方面颇有建树,所以他想让你建一个树。
Description
大小为 的树如下:
/\
大小为 的树如下:
/\
/\/\
大小为 的树如下:
/\
/\/\
/\/\/\
以此类推。给定 ,你需要输出大小为 的树。
Format
Input
仅一行一个正整数 .
Output
大小为 的树。
Samples
4
/\
/\/\
/\/\/\
/\/\/\/\
Limitation
对于所有测试点,时间限制 1s,空间限制 32MiB.