coroana te rog!
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int n,x,y,a,b,amax,bmax,max=-1;
cin>>n;
cin>>x>>y;
n--;
for(int i=1;i<=n;i++){
cin>>a>>b;
if(sqrt((a-x)*(a-x)+(b-y)*(b-y))>max){
max=sqrt((a-x)*(a-x)+(b-y)*(b-y));
amax=a;
bmax=b;
}
}
cout<<"Punctul cel mai îndepărtat de ("<<x<<", "<<y<<") este ("<<amax<<", "<<bmax<<"), iar distanta dintre ele este "<<max;
return 0;
}