Advertisement
rengetsu

CF_136A

Nov 7th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. // Codeforces Round 136A
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n;
  7.     cin >> n;
  8.     int nn[n], g;
  9.     for(int i = 0; i < n; i++)
  10.     {
  11.         cin >> g;
  12.         nn[g] = i+1;
  13.     }
  14.     for(int i = 1; i < n+1; i++)
  15.     {
  16.         cout << nn[i] << endl;
  17.     }
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement