#include<stdio.h>
#include<math.h>
int main()
{
   int i,x,y,z;
   scanf("%d%d",&x,&y);
   z=((int)pow(x,y))%1000;
   if(x>=100)
   {
      printf("%d",z);
   }
   else
   {
    printf("%d",z);
   }
   return 0;
}

相关文章:

  • 2021-09-29
  • 2022-03-10
  • 2022-12-23
  • 2022-12-23
  • 2021-08-13
  • 2022-12-23
  • 2021-11-06
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案