#include #include using namespace std; int main(void) { int n; cin>>n; map<int,int>m; map<int,int>::iterator it; int k=0; for(int i=0;i<n;i++) { int key,value; cin>>key>>value; it=m.find(key); if(it==m.end()) { m[key]=value; } else { ...