#include <stdio.h>
void sum(int a, int b)
{
int ret = a + b;
printf("%d + %d = %d\n", a, b, ret);
}
int main(int argc, char const *argv[])
return 0;