#include<stdio.h>

/* 
 * Terry Harvey CISC105 section 010 TA Quantox Smith 
 * Program to demonstrate an if statement
 */


int main(){

    int i;
    i = 8;

    if (i > 8)
        printf("The value in i is greater than 8\n");
    else if (i == 8)
        printf("The value in i is equal to 8\n");
    else
        printf("The value in i is less than 8\n");

    return 0;
}



