(VAR y x) (RULES +(0,y) -> y +(s(x),y) -> s(+(x,y)) +(x,0) -> +(0,x) +(x,s(y)) -> +(s(y),x) ) (COMMENT Example 23 of Aoto/Toyama, FSCD 2016)