def kvadrat(x) x * x; def kub(x) x * x * x; extern sin(x); extern cos(x); kvadrat(4); kub(5); sin(10) * sin(10) + cos(10) * cos(10);