public class Solution {
    public int jumpFloorII(int target) {
         return 1<<(target-1);
    }
}