Twilight

#include <vampires.h>
#include <werewolves.h>

void main()
{
    int Bank = 0;
   
    while (vampires == POPULAR)
    {
        Bank += ReleaseMovie();
    }
}

int ReleaseMovie()
{
    int i = 0;
    int money = 0;
   
    for(i = 0; i<FEM_TEEN_POPULATION; i++)
    {
        money += 10;
    }
    return money;
}
Vote up this code5