Problem B: 输出 1~n 内所有勾股数

Problem B: 输出 1~n 内所有勾股数

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

输入一个正整数 n,输出所有满足 的勾股数。

Input

整数 n

Output

每行一组 a b c

Sample Input Copy

10

Sample Output Copy

3 4 5
6 8 10

HINT