#P467. 【入门】数字三角

【入门】数字三角

Description

输入一个整数n,打印n行的数字三角!

Input Format

一个整数n(n<10)

Output Format

n行的数字三角

3
123
 12
  1

Source

嵌套循环