Read key-value pairs from the standard input and add them to an instance of IdentityHashMap.
The first line is a number of key-value pairs. In each next line, key and value are separated by a whitespace.
Read key-value pairs from the standard input and add them to an instance of IdentityHashMap.
The first line is a number of key-value pairs. In each next line, key and value are separated by a whitespace.
Sample Input 1:
3
key value
key1 value
key2 valueSample Output 1:
key key1 key2Create a free account to access the full topic