Yes. You know this is true because you learned a process-- an "algorithm"--for adding two numbers together, and if you start with two whole numbers, the result is also a whole number.
Algorithm in C Language:int *a,*b; //Declaraction of the two pointersint sum;scanf("%d%d",a,b); //Reading values of the 2 variablessum=*a+*b;printf("SUM = %d",sum);