def apsolutno(x)
    if x < 0 then
       0 - x
    else
       x;
apsolutno(0-1);
apsolutno(10);
