#include <stdio.h>

int main ()
{
   int loop;
for (loop = 30; loop < 1; loop++){
printf ("aguarde %i segundos", loop);
}

   return 0;
}