#include <utility>
#include <cstdio>
#include <cmath>
#include <map>
typedef std::pair<long long,long long> count;
std::map<long long,count> c;
int main()
{
	// freopen("card.in","r",stdin);
	// freopen("card.out","w",stdout);
	int n;
	scanf("%d",&n);
	for(int i=0;i<n;i++)
	{
		long long a,b;
		scanf("%lld%lld",&a,&b);
		c[a].first++;
		if(a!=b)
		{
			c[b].first++;
			c[b].second++;
		}
	}
	long long min=0x7fffffffffffffff;
	long long need=(n+1LL)>>1LL;
	for(std::map<long long,count>::iterator i=c.begin();i!=c.end();i++)
		if((i->second).first>=need)
			min=std::min(min,std::max(0LL,need-(i->second).first+(i->second).second));
	if(min==0x7fffffffffffffff) puts("Impossible");
	else printf("%lld\n",min);
	return 0;
}