V字仇杀队
题号:NC231167
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

V就是victory这个单词的首字母, 表示胜利意思, 恭喜同学们参加ICPC青少年赛并坚持到了现在. 为了鼓励大家, 本题就让大家打印一个由大写字母'V'构成的v型图案.

你需要打印 的V型图案, 如样例.

V means victory, congratulations to all for participation in this HMSPC. In order to encourage you, you need to print a "V" in the form of a capital letter 'V'.

For simplicity, print a "V" of size

输入描述:

多组输入(最多100组), 每组输入一行.

第一行输入一个整数 n, 表示图像的尺寸.

Multiple groups of input (up to 100 groups), each group has only one lines.

First line input one integer n, denote the size of pattern.

输出描述:

对于每一组输出样例, 输出图像V. 所有空白部分都需要用空格填充

For each case, output the pattern 'V'. All blank space should filled in with Spaces
示例1

输入

复制
1
2
3

输出

复制
V
V V
 V 
V   V
 V V 
  V

说明

空白部分用空格填充

The whitespace is filled in with Spaces


备注:

空白部分用空格填充

The whitespace is filled in with Spaces