int offset(void)
{
    return TRIAL ? 0 : 20;
}

int plus(int aaa)
{
    aaa += offset();

    return aaa;
}