program test1(a,b); function test11(x,y: float) : float; begin if x < 10.0 then test11 := x+y else test11 := x-y; end; begin read(a,b); write(test11(a,b); end.