New Year Ratings Change

One very well-known internet resource site (let’s call it X) has come up with a New Year adventure. Specifically, they decided to give ratings to all visitors.

There are n users on the site, for each user we know the rating value he wants to get as a New Year Present. We know that user i wants to get at least a i rating units as a present.

The X site is administered by very creative and thrifty people. On the one hand, they want to give distinct ratings and on the other hand, the total sum of the ratings in the present must be as small as possible.

Help site X cope with the challenging task of rating distribution. Find the optimal distribution.

Input

The first line contains integer n (1 ≤ n ≤ 3·105) — the number of users on the site. The next line contains integer sequence a 1, a 2, …, a n (1 ≤ a i ≤ 109).

Output

Print a sequence of integers b 1, b 2, …, b n. Number b i means that user i gets b i of rating as a present. The printed sequence must meet the problem conditions.

If there are multiple optimal solutions, print any of them.

Examples

input

3
5 1 1

output

5 1 2

input

1
1000000000

output

1000000000

Solution:

#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <memory.h>

using namespace std;

const int N = 1000010;

pair <int, int> a[N];
int b[N], ans[N];

int main() {
int n;
scanf("%d", &n);
for (int i = 0; i < n; i++) {
    scanf("%d", &(a[i].first));
    a[i].second = i;
  }
  sort(a, a + n);
  b[0] = a[0].first;
  for (int i = 1; i < n; i++) {
    b[i] = a[i].first;
    if (b[i] < b[i - 1] + 1) b[i] = b[i - 1] + 1;
  }
  for (int i = 0; i < n; i++) ans[a[i].second] = b[i];
  for (int i = 0; i < n - 1; i++) printf("%d ", ans[i]);
  printf("%d\n", ans[n - 1]);
  return 0;
}