/* File : countdown.c *
* By : *
* login: *
* team : *
* Date : */
/* A program to count from 10 down to 1, one per line and print "blastoff" */
main()
{
count = 10;
while( count >= 0)
{
printf("%d\n", count);
}
printf("BLASTOFF!\n");
}