测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A14934. Power Board

编程题 普及/提高-

题目描述

You have a rectangular board of size $n\times m$ ( $n$ rows, $m$ columns). The $n$ rows are numbered from $1$ to $n$ from top to bottom, and the $m$ columns are numbered from $1$ to $m$ from left to right.

The cell at the intersection of row $i$ and column $j$ contains the number $i^j$ ( $i$ raised to the power of $j$ ). For example, if $n=3$ and $m=3$ the board is as follows:

![](/uploads/acgo/image/4cbddb23b89d00fc_5de5b432c0cc.jpeg)Find the number of distinct integers written on the board.

输入格式

The only line contains two integers $n$ and $m$ ( $1\le n,m\le 10^6$ ) — the number of rows and columns of the board.

输出格式

Print one integer, the number of distinct integers on the board.

输入输出样例

输入 #1
3 3
输出 #1
7
输入 #2
2 4
输出 #2
5
输入 #3
4 2
输出 #3
6

说明/提示

The statement shows the board for the first test case. In this case there are $7$ distinct integers: $1$ , $2$ , $3$ , $4$ , $8$ , $9$ , and $27$ .

In the second test case, the board is as follows:

![](/uploads/acgo/image/54f31deacd9eee9d_4fb191bc0a6c.jpeg)There are $5$ distinct numbers: $1$ , $2$ , $4$ , $8$ and $16$ .

In the third test case, the board is as follows:

![](/uploads/acgo/image/115ff32689f24e5c_cdc10eb00626.jpeg)There are $6$ distinct numbers: $1$ , $2$ , $3$ , $4$ , $9$ and $16$ .
上一题 去做题 下一题