/**
@author Your Name Here

Replace this line with a description of your program.
*/

#include <stdlib.h>
#include <stdio.h>

/** Stub function for countdown(). Put your own description here. */
int countdown(){

}

/** Stub function for main(). Put your own description here. */
int main (){

	return 0;
}

