#include <stdio.h>
int
f(int c, int d)
{
int sum = d+c
printf("explicit data %d+%d=%d\n", c, d, sum);
return sum;
}