#define _GLIBCXX_DEBUG #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b using namespace std; int main(){ int n; cin>>n; vector a(n),b(n); rep(i,n) cin>>a[i]; rep(i,n) b[i]=a[i]; sort(ALL(b)); b.erase(unique(ALL(b)),b.end()); int x=b.size(); if(x==n) cout<<0<