My code is giving erreor

Modified Code

	void print(){
		for (auto p:l){
			string city=p.first;
			list<pair<string,int>>nbrs=p.second;
			cout<<city<<" ";
			for(auto nbr:nbrs){
				string dest=nbrs.first;
				int dist=nbrs.second;
				cout<<dest<<" "<<dist<<" ";

			}
			cout<<endl;

		}
	}
 string dest=nbrs.first;
 int dist=nbrs.second;

this should be nbr as nbr is iterator nbrs is a list

i hope this helps
if yes hit a like and don’t forgot to mark doubt as resolved
if you have more doubts regarding this feel free to ask

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.