/* Braces.c */
#include <stdio.h>
main()
{
  int i; /* declare an integer for the loop */

  for(i = 1; i <= 3; i++)
	 {
      printf("%d\n", i);
	   if(i == 3)
	    {
	      printf("This is the last time\n");
	      printf("i equals now three\n");
	    } /* end of if statement */
	 } /* end of for loop */

  return 0;
} /* end of main function */
