#include int main() { int n = 3; while ( n>= 0 ) { printf("%d ", n); n--; } printf("·ΆΙδ\n"); return 0; }