#54922: c++解題引導


yp11452077@yphs.tp.edu.tw (706-08胡瑀霏)


#include<bits/stdc++.h>
using namespace std;
int main(){
    int n,a;
    while(cin>>n){
        for(int i=1;i<=n;i++){ //從1到n的數字
            cin>>a;
            cout<<i<<" ";
        }
        cout<<endl; //做最後的輸出
    }
}