#D8894. Integral
Integral
Integral
Write a program which computes the area of a shape represented by the following three lines:
It is clear that the area is , if you use an integral you learn in high school. On the other hand, we can obtain an approximative area of the shape by adding up areas of many rectangles in the shape as shown in the following figure:
$f(x) = x^2$The approximative area where the width of the rectangles is is:
area of rectangle where its width is and height is area of rectangle where its width is and height is area of rectangle where its width is and height is ... area of rectangle where its width is and height is
The more we decrease , the higer-precision value which is close to we could obtain. Your program should read the integer which is a divisor of , and print the area .
Input
The input consists of several datasets. Each dataset consists of an integer in a line. The number of datasets is less than or equal to 20.
Output
For each dataset, print the area in a line.
Example
Input
20 10
Output
68440000 70210000
inputFormat
Input
The input consists of several datasets. Each dataset consists of an integer in a line. The number of datasets is less than or equal to 20.
outputFormat
Output
For each dataset, print the area in a line.
Example
Input
20 10
Output
68440000 70210000
样例
20
10
68440000
70210000
</p>