import java.util.Scanner;
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
BigInteger b,p,m;
while(input.hasNext())
{
b=input.nextBigInteger();
p=input.nextBigInteger();
m=input.nextBigInteger();
System.out.println(b.modPow(p,m)); // (base,power,mod)
}
}
}
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
BigInteger b,p,m;
while(input.hasNext())
{
b=input.nextBigInteger();
p=input.nextBigInteger();
m=input.nextBigInteger();
System.out.println(b.modPow(p,m)); // (base,power,mod)
}
}
}
0 comments:
Post a Comment