Problem Description
Firdavs and Khaled study in the same school class. Recently, Khaled told Firdavs about a clever way to square natural numbers ending in the digit 5. Now Firdavs can easily square two-digit (and sometimes three-digit) numbers ending in 5.
The essence of the method is as follows: to square a number ending in 5, it is enough to multiply the number obtained from the original after removing the last five by the next number in order, and then append «25» to the right of the result.
For example, to square the number 125, you need to multiply 12 by 13, and then append 25:
Write a program that squares a number ending in 5 so that Firdavs can check his skills.
Input Format
A natural number is given, ending in the digit 5, greater than 5 and not exceeding .
Output Format
Output one natural number - without leading zeros.
Examples
45
2025