circle_selection.cpp: In function 'bool tatatata(int, int)':
circle_selection.cpp:27:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if((a.r+b.r)*(a.r+b.r) >= ppp)return true;return false;
^~
circle_selection.cpp:27:47: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
if((a.r+b.r)*(a.r+b.r) >= ppp)return true;return false;
^~~~~~
circle_selection.cpp: In function 'int main()':
circle_selection.cpp:41:17: warning: unused variable 'ans_' [-Wunused-variable]
int ans_ = -1;
^~~~
circle_selection.cpp:32:10: warning: unused variable 'k' [-Wunused-variable]
ll n,k;
^
circle_selection.cpp:33:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld",&n);
~~~~~^~~~~~~~~~~
circle_selection.cpp:35:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld %lld %lld",&points[i].x,&points[i].y,&points[i].r);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~