Description
给出一整数n,输出5^n的最后两位
Input
一整数n(2<=n<=2*10^18)
Output
输出5^n的最后两位
Sample Input
2
Sample Output
25
Solution
水题,n>=2时5^n%100=25
Code
#include<cstdio>
#include<iostream>
using namespace std;
#define maxn 22
char n[maxn];
int main()
{
while(~scanf("%s",n))
printf("25\n");
return 0;
}