(GOAL COMPLEXITY) (STARTTERM (FUNCTIONSYMBOLS start)) (VAR A B) (RULES eval(A,B) -> Com_1(eval(A - 1,B)) :|: A >= 1 eval(A,B) -> Com_1(eval(A - 1,B)) :|: B >= 1 && A >= 1 eval(A,B) -> Com_1(eval(A,B - 1)) :|: A >= 1 && 0 >= A && B >= 1 eval(A,B) -> Com_1(eval(A,B - 1)) :|: B >= 1 && 0 >= A eval(A,B) -> Com_1(eval(A,B)) :|: A >= 1 && 0 >= A && 0 >= B eval(A,B) -> Com_1(eval(A,B)) :|: B >= 1 && 0 >= A && 0 >= B start(A,B) -> Com_1(eval(A,B)) )