#include <stdio.h>

void baz(int a, int b)
{
  printf("%d + %d = %d\n", a, b, a+b);
}

