document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import java.util.*;
  2. //import java.lang.Math;
  3.  
  4. public class Practicer {
  5.  
  6. public static void main(String[] args) {
  7. Scanner cin = new Scanner(System.in);
  8.  
  9. long base = cin.nextLong();
  10. long power = cin.nextLong();
  11.  
  12. System.out.printf("%.0f",Math.pow(base, power));
  13. //?? why can't import java.lang.Math; ?
  14.  
  15. }
  16. }
  17.  
  18.  
');