/**
 * CS1010 AY2011/2 Semester 2 Lab1 Ex4
 *
 * saturday.c
 * <Fill in a description of this program>
 *
 * <Type your name here>
 * <Type your discussion group here>
 */

#include <stdio.h>


int main(void)
{
	int day, month, year;
	int saturday;

	printf("Enter date of a Monday as <year month day>: ");

	// fill in your code below (remove this comment)




	printf("The date of Saturday in that week is: "
			"%d-%d-%d\n", year, month, saturday);

	return 0;
}

// write other functions if necessary

// use of function in this exericse is ENCOURAGED, but not compulsory

// this exercise is ungraded by your discussion leader; but you may
// still submit to CodeCrunch for auto test of correctness.

