Doubt in set problem?

If I have a set of type : set< pair < int, char> > s;
auto f = s.begin();
char node = f->second;
int dist = f->first;

this is working fine

but why is : set< pair < int , pair<int, char>>> s;
auto f = s.begin();
char node = f->second->second;
int dist = f->second->first;

giving error?

@deepak_four the correct syntax is

char node = f->second.second;
int dist = f->second.first; 

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.