Problem: Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over.
This time Miroslav laid out skewers parallel to each other, and enumerated them with consecutive integers from to in order from left to right. For better cooking, he puts them quite close to each other, so when he turns skewer number , it leads to turning closest skewers from each side of the skewer , that is, skewers number , , ..., , , ..., , (if they exist).
For example, let and . When Miroslav turns skewer number , then skewers with numbers , , and will come up turned over. If after that he turns skewer number , then skewers number , , and will be turned over, while skewer number will be in the initial position (because it is turned again).
As we said before, the art of cooking requires perfect timing, so Miroslav wants to turn over all skewers with the minimal possible number of actions. For example, for the above example and , two turnings are sufficient: he can turn over skewers number and .
Help Miroslav turn over all skewers.
Input Format: The first line contains two integers and (, ) — the number of skewers and the number of skewers from each side that are turned in one step.
Output Format: The first line should contain integer — the minimum number of actions needed by Miroslav to turn over all skewers. After than print integers from to denoting the number of the skewer that is to be turned over at the corresponding step.
Note: In the first example the first operation turns over skewers , and , the second operation turns over skewers , , and .
In the second example it is also correct to turn over skewers and , but turning skewers and , or and are incorrect solutions because the skewer is in the initial state after these operations.