#include <stdio.h>

void goldbach (int);
/* Function prints the correct goldbach sum for a given integer */

int main()
{
    goldbach (24);  /* Print out the goldbach sum for 24 */
    return 0;
}

void goldbach (int num)
/* This function prints two odd primes which add up to "num" */
{
    /* write your function here */

}


