#Lutece0214. Lights

Lights

Migrated from Lutece 214 Lights

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Bessie and the cows were playing games in the barn, but the power was reset and the lights were all turned off. Help the cows get all the lights back on so they can resume their games.

The NN (1N351\leq N\leq 35) lights conveniently numbered 1N1\cdots N and their switches are arranged in a complex network with MM (1M5951\leq M\leq 595) clever connection between pairs of lights (see below).

Each light has a switch that, when toggled, causes that light -- and all of the lights that are connected to it -- to change their states (from on to off, or off to on).

Find the minimum number of switches that need to be toggled in order to turn all the lights back on.

It's guaranteed that there is at least one way to toggle the switches so all lights are back on.

Input

Line 11: Two space-separated integers: NN and MM.

Lines 2M+12\cdots M+1: Each line contains two space-separated integers representing two lights that are connected. No pair will be repeated.

Output

Line 11: A single integer representing the minimum number of switches that need to be flipped in order to turn on all the lights.

Samples

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

Resources

USACO Contest Nov.2009