#icpc2013springd. [icpc2013spring_d]Medical Inspection

[icpc2013spring_d]Medical Inspection

$(function(){document.getElementById("fixed-server-timer").style.display = "none";})

Problem Statement

The government has declared a state of emergency due to the MOFU syndrome epidemic in your country. Persons in the country suffer from MOFU syndrome and cannot get out of bed in the morning. You are a programmer working for the Department of Health. You have to take prompt measures.

The country consists of nn islands numbered from 1 to nn and there are ocean liners between some pair of islands. The Department of Health decided to establish the quarantine stations in some islands and restrict an infected person's moves to prevent the expansion of the epidemic. To carry out this plan, there must not be any liner such that there is no quarantine station in both the source and the destination of the liner. The problem is the department can build at most KK quarantine stations due to the lack of budget.

Your task is to calculate whether this objective is possible or not. And if it is possible, you must calculate the minimum required number of quarantine stations.


Input

The test case starts with a line containing three integers N(2leqNleq3,000)N (2 \\leq N \\leq 3{,}000), M(1leqMleq30,000)M (1 \\leq M \\leq 30{,}000) and K(1leqKleq32)K (1 \\leq K \\leq 32). Each line in the next MM lines contains two integers ai(1leqaileqN)a_i (1 \\leq a_i \\leq N) and bi(1leqbileqN)b_i (1 \\leq b_i \\leq N). This represents ii-th ocean liner connects island aia_i and bib_i. You may assume aineqbia_i \\neq b_i for all ii, and there are at most one ocean liner between all the pairs of islands.

Output

If there is no way to build quarantine stations that satisfies the objective, print "Impossible" (without quotes). Otherwise, print the minimum required number of quarantine stations.

Sample Input 1


3 3 2
1 2
2 3
3 1

Output for the Sample Input 1


2

Sample Input 2


3 3 1
1 2
2 3
3 1

Output for the Sample Input 2


Impossible

Sample Input 3


7 6 5
1 3
2 4
3 5
4 6
5 7
6 2

Output for the Sample Input 3


4

Sample Input 4


10 10 10
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5

Output for the Sample Input 4


4

Source Name

Japan Alumni Group Spring Contest 2013