void main()
{
short int x;
x=80*80*80;
printf("80的三次方是%d\n",x);
}
void main()
{
long int x;
x=80*80*80;
printf("80的三次方是%d\n",x);
}