#include<map>
#include<queue>
#include<time.h>
#include<limits.h>
#include<cmath>
#include<ostream>
#include<iterator>
#include<set>
#include<stack>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
#define rep_1(i,m,n) for(int i=m;i<=n;i++)
#define mem(st) memset(st,0,sizeof st)
int read()
{
int res=0,ch,flag=0;
if((ch=getchar())=='-') //判断正负
flag=1;
else if(ch>='0'&&ch<='9') //得到完整的数
res=ch-'0';
while((ch=getchar())>='0'&&ch<='9')
res=res*10+ch-'0';
return flag?-res:res;
}
typedef long long ll;
typedef pair<int,int> pii;
typedef unsigned long long ull;
typedef pair<double,double> pdd;
const int inf = 0x3f3f3f3f;
const int N=1e6+10;
int n;
int a[N],st[N],d[N],m;
int main()
{
cin>>n;
for(int i=1; i<=n; i++)
cin>>a[i],st[a[i]]=1;
for(int i=1; i<=n; i++)
if(!st[i])
d[++m]=i;//没在序列中的
int j=0;
for(int i=1; i<=n; i++)
{
if(a[i]==a[i-1])
cout<<d[++j]<<" ";//如果等于 上一个,就把不在中的提前放进去
else
cout<<a[i-1]<<" ";
}
return 0;
}