#include <stdio.h> int main (void) { for (int i = 10; i > 0; i--) printf ("%d ... ", i); printf ("Bumm.\n"); return 0; }