#include <stdio.h>
int main(void) {
	// your code goes here
	int x; /* loop variable */
	
	for (x = 0; x  < 5;  x++) { }
    printf ("\nThe final value of x is %i: ", x);   /* will print 5 */

    for (x = 0; x  <= 5;  x++)
    {
        /* do nothing */
    }
    printf ("\nThe final value of x is %i: ", x);   /* will print 5 */
    
	return 0;
}
