提交时间:2026-03-31 15:59:58
运行 ID: 434847
#include<iostream> using namespace std; int main(){ int n; cin>>n; while(n>0){ cout<<n; n--; } return 0; }