# include void downUp(int n) { for(int i = n; i > 0; i--) { printf("%d, ", i) } printf("0"); for(int i = 1; i <= n; i ++) { printf(", %d", i); } }