#332. 格式化输出I

格式化输出I

No submission language available for this problem.

Background

合适的排版,会让人看得更舒服。

Description

输入一个 1 ~ 999 的整数 n,并输出 1 ~ n,且每 5 个整数占一行,要求输出时,列按个位对齐。

Format

Input

一行一个整数 n

Output

按要求的格式化输出

Samples

17
 1  2  3  4  5 
 6  7  8  9 10 
11 12 13 14 15
16 17

Limitation