#include <bits/stdc++.h> using namespace std; int main() { int n,a; while(cin>>n){ for (int i=1;i<=n;i++){ cin>>a; cout<<i<<" "; } cout<<endl; } }