what’s error in my code-------------\
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner cin = new Scanner(System.in);
long t = cin.nextLong(),n,k,x;
while(t–>0){
n = cin.nextLong();
k = cin.nextLong();
System.out.println(Math.pow(n,k));
}
}
}