#include <stdio.h> int main() { typedef struct { int key; int value; } MapObject; MapObject mapObject[1000]; int total; scanf("%d", &total); for (int i = 0; i < total; i++) { int key, value; scanf("%d %d", &key, &value); mapObject[i].key = key; mapObject[i].v...