您的位置:首页 > 大数据 > 人工智能

A. Again Twenty Five

2016-02-19 00:25 531 查看
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?

Input

The only line of the input contains a single integer n (2 ≤ n ≤ 2·1018) — the power in which you need to raise number 5.

Output

Output the last two digits of 5n without spaces between them.

Examples

input

2

output

25

题意: 求5^n最后两位数

#include<iostream>
using namespace std;
int ksm(__int64 a, __int64 b, __int64 n)
{
int f = 1;
while (b)
{
if (b % 2 == 1)
f = f*a%n;
a = a*a%n;
b /= 2;
}
return f;
}
int main()
{
__int64  n;
cin >> n;
cout << ksm(5, n, 100) << endl;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: