10 lines
79 B
C

int kvadrat(int x)
{
return x*x;
}
int kubik(int x)
{
return x*x*x;
}