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