和正解有點出入= =...
不知道哪邊有錯誤抓不出來...
#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);
else if(a==0&&b==0)
printf("All Over.\n");
}
return 0;
}