题库练习 Ivan the Fool and the Probability Theory
← 上一题 下一题 →

A12877 | Ivan the Fool and the Probability Theory

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Recently Ivan the Fool decided to become smarter and study the probability theory. He thinks that he understands the subject fairly well, and so he began to behave like he already got PhD in that area.

To prove his skills, Ivan decided to demonstrate his friends a concept of random picture. A picture is a field of $n$ rows and $m$ columns, where each cell is either black or white. Ivan calls the picture random if for every cell it has at most one adjacent cell of the same color. Two cells are considered adjacent if they share a side.

Ivan's brothers spent some time trying to explain that it's not how the randomness usually works. Trying to convince Ivan, they want to count the number of different random (according to Ivan) pictures. Two pictures are considered different if at least one cell on those two picture is colored differently. Since the number of such pictures may be quite large, print it modulo $10^9 + 7$ .

输入格式

The only line contains two integers $n$ and $m$ ( $1 \le n, m \le 100\,000$ ), the number of rows and the number of columns of the field.

输出格式

Print one integer, the number of random pictures modulo $10^9 + 7$ .

输入输出样例

输入 #1
2 3
输出 #1
8
C++ 编辑器
输入
输出