Move Move Look

Description


There are two color (white and black) chessmen in a row. The number of white chessman is equal to the number of black chessman. The left half of the row is black chessmen and the right half of the row is white chessmen at first. There are two rules for the game. 
1.  Only two neighbor chessmen (double black, double white or one black and one white) can be moved to vacancy at one time. The new vacancy can be filled by the two new neighbor chessmen. Repeat moving chessmen until all chessmen are interphase with black chessman and white chessman. 
2.  The number of move must be the minimum. 

The case n=3 is shown in Fig. 1. Your task is to get the number of the minimum steps. 

 

  


Input


There are multiple cases in this problem and ended by the EOF. In each case, there is only one integer means the number of black chessmen (the same as white chessmen) n(3<=n<=1000). 

  


Output


For each test case, there is only one integer means the minimum steps. 

  


Sample Input


 3 


  


Sample Output


 3 

 

这个题的结论是:f(n)=n;n>=3&&n<=1000

posted @ 2018-07-18 15:00  RAIN-code  阅读(248)  评论(0编辑  收藏  举报