#5214: 救命阿!!!!!!!!


jimmy84711 (派大星)


#include <stdio.h>
#include <stdlib.h>

int main()
{
  long long int a=0,b=0,c=0;

while(scanf("%lld%lld",&a,&b)!=EOF)
{  
  
  c=pow(a,b);
  if(a!=0,b!=0)
  printf("%lld\n",c);
  if(a==0&&b==0)
  printf("All Over.\n");
}
   return 0;
}
 讓我過啦!