Again Twenty Five!

题意翻译

输出 $5^n$ 的后两位 感谢@_UKE自动机_ 提供翻译

题目描述

The HR manager was disappointed again. The last applicant failed the interview the same way as 24 previous ones. "Do I give such a hard task?" — the HR manager thought. "Just raise number $ 5 $ to the power of $ n $ and get last two digits of the number. Yes, of course, $ n $ can be rather big, and one cannot find the power using a calculator, but we need people who are able to think, not just follow the instructions." Could you pass the interview in the machine vision company in IT City?

输入输出格式

输入格式


The only line of the input contains a single integer $ n $ ( $ 2<=n<=2·10^{18} $ ) — the power in which you need to raise number $ 5 $ .

输出格式


Output the last two digits of $ 5^{n} $ without spaces between them.

输入输出样例

输入样例 #1

2

输出样例 #1

25