Semicompiled

Divide

source.c
unsigned long int produce(void);
void consume(unsigned long int);
void myEntry(void)
{
consume(produce() / 7);
}