#include <stdlib.h>
#include <stdio.h>
#include <string.h>


int main(int argc, const char * argv[])
{

    for(int x = 79; x < 83; ++x)
        if ( x % 2 == 0 )
        {
            printf( "%d is ", x );
            printf( "%s\n", "even" );
        }
        else
        {
            printf( "%d is ", x );
            printf( "%s\n", "odd" );
        }

    for(int x = 79; x < 83; ++x)
    {
        ( x % 2 == 0 )
            ? (printf( "%d is ", x ), printf( "%s\n", "even" ))
            : (printf( "%d is ", x ), printf( "%s\n", "odd" ));
    }
}

