王 彥 says to YSITD #include <stdio.h> int main(){ int N , R ; scanf("%d",&N); while (N >= 0) { printf("%d",N); N = N - 1; }; return 0; };