跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2654. Not Wool Sequences

    ID: 2660 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 3 上传者: 标签>构造数学算法思想基础难度共享题库Codeforces英文题面题目来源题面语言

Not Wool Sequences

题目描述

A. Not Wool Sequences
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

A sequence of non-negative integers a1,a2,...,an of length n is called a wool sequence if and only if there exists two integers l and r (1≤lrn) such that . In other words each wool sequence contains a subsequence of consecutive elements with xor equal to 0.

The expression means applying the operation of a bitwise xor to numbers x and y. The given operation exists in all modern programming languages, for example, in languages C++ and Java it is marked as "^", in Pascal − as "xor".

In this problem you are asked to compute the number of sequences made of n integers from 0 to 2m-1 that are not a wool sequence. You should print this number modulo 1000000009 (109+9).

Input

The only line of input contains two space-separated integers n and m (1≤n,m≤105).

Output

Print the required number of sequences modulo 1000000009 (109+9) on the only line of output.

Examples
Input
3 2
Output
6
Note

Sequences of length 3 made of integers 0, 1, 2 and 3 that are not a wool sequence are (1, 3, 1), (1, 2, 1), (2, 1, 2), (2, 3, 2), (3, 1, 3) and (3, 2, 3).


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2315 题。保留原作者与原赛事署名。