#include<stdio.h>

/*
 * Terry Harvey 
 * C program to show use of the scanf function for
 * getting input from a user.
 */

int main(){

    int i; 
    i = 54; //what happens to the 54?

    printf("Please enter an integer: ");
    scanf("%d", &i); //scanf will try to read an integer and put it
                     //into the variable i.

    if (i > 7)
        printf("The number is greater than seven.\n");
    else
        printf("The number is less than seven.\n"); //is this correct?

    return 0;
}


