Regarding the error

Hey @gargshivam2001

    for(int i=0;i<n;i++)
	{
		if(s[i].second>=x) //do >= here
		{
			cout<<s[i].first<<" "<<s[i].second<<endl;
		}
	}