Run ID:141949

提交时间:2025-12-29 16:44:17

#include<iostream> using namespace std; int main(){ int n; cin>>n; for(int i=1;n>=i;i++){ cout<<i<<endl; } }