#include "math.h" main() {int a,b,c; scanf("%d,%d",&a,&b); c=pow(a,b); printf("%d",c);
getch(); /* 请不要删除此行 */ }