| Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Prepared by Ilir Capuni. 
Difficulty Beta
 
 
   Finding the n-th element of a sequenceQuestion:  A sequence of integers is defined using the following equations
 
 
  A2n = An Find the nth element of the sequence without the need to generate all previous elements.A2n+1 = An + An+1
 
 Input specification  You will be given two positive integers n and A1 where 1 ≤ n ≤ 10000
and 1 ≤ A1 ≤ 1000.
 Output specification  Show just one integer number:the nth element of the sequence.
 
| Sample Input I 
 
  11 1 
 | Sample Input II 
 
  9 3 
 |  
| Sample Output I 
 
  5
 | Sample Output II 
 
  12
 |  
 Для отправки решений необходимо выполнить вход.
 
 
 |