For example, let there be a function called mark(int n, int m)
if human() calls mark, then mark returns m + n
if comp() calls mark, do m+=1 and n+=1 then return m + n
Something like
1 2 3 4 5 6
mark(int n, int m){
if(comp() called me){
m+=1; n+=1;
}
return m + n;
}