CF254A Cards with Numbers

Description

Petya has got $ 2n $ cards, each card contains some integer. The numbers on the cards can be the same. Let's index all cards by consecutive integers from $ 1 $ to $ 2n $ . We'll denote the number that is written on a card with number $ i $ , as $ a_{i} $ . In order to play one entertaining game with his friends, Petya needs to split the cards into pairs so that each pair had equal numbers on the cards. Help Petya do that.

Input Format

The first line contains integer $ n $ ( $ 1

Output Format

If it is impossible to divide the cards into pairs so that cards in each pair had the same numbers, print on a single line integer -1. But if the required partition exists, then print $ n $ pairs of integers, a pair per line — the indices of the cards that form the pairs. Separate the numbers on the lines by spaces. You can print the pairs and the numbers in the pairs in any order. If there are multiple solutions, print any of them.