Palindromes

Time Limit : 1 Second

Memory Limit : 512 MB

Submission: 61

Solved: 20

Description

Palindromes are numbers that read the same forwards as backwards. Like 12321.


Given a number base B (2 <= B <= 20), calculate all the number N( N no large than 300) such that N^2 is palindromic when expressed in base B. 


Pay attention, 'A', 'B', and so on represent the digits 10, 11, and so on.


Print both the number and its square in base B.


 

Input

A single line with B.

Output

Lines with two integers represented in base B. The first integer is the number whose square is palindromic; the second integer is the square itself.

sample input
10
sample output
1 1
2 4
3 9
11 121
22 484
26 676
101 10201
111 12321
121 14641
202 40804
212 44944
264 69696
hint
source
© 2015 HUST ACMICPC TEAM. All Right Reserved.