Robbers' watch

题意翻译

一天 $n$ 小时, $m$ 分钟, 表以 $7$ 进制显示, 求表显示数字不同的方案数。

题目描述

Robbers, who attacked the Gerda's cab, are very successful in covering from the kingdom police. To make the goal of catching them even harder, they use their own watches. First, as they know that kingdom police is bad at math, robbers use the positional numeral system with base $ 7 $ . Second, they divide one day in $ n $ hours, and each hour in $ m $ minutes. Personal watches of each robber are divided in two parts: first of them has the smallest possible number of places that is necessary to display any integer from $ 0 $ to $ n-1 $ , while the second has the smallest possible number of places that is necessary to display any integer from $ 0 $ to $ m-1 $ . Finally, if some value of hours or minutes can be displayed using less number of places in base $ 7 $ than this watches have, the required number of zeroes is added at the beginning of notation. Note that to display number $ 0 $ section of the watches is required to have at least one place. Little robber wants to know the number of moments of time (particular values of hours and minutes), such that all digits displayed on the watches are distinct. Help her calculate this number.

输入输出格式

输入格式


The first line of the input contains two integers, given in the decimal notation, $ n $ and $ m $ ( $ 1<=n,m<=10^{9} $ ) — the number of hours in one day and the number of minutes in one hour, respectively.

输出格式


Print one integer in decimal notation — the number of different pairs of hour and minute, such that all digits displayed on the watches are distinct.

输入输出样例

输入样例 #1

2 3

输出样例 #1

4

输入样例 #2

8 2

输出样例 #2

5

说明

In the first sample, possible pairs are: $ (0:1) $ , $ (0:2) $ , $ (1:0) $ , $ (1:2) $ . In the second sample, possible pairs are: $ (02:1) $ , $ (03:1) $ , $ (04:1) $ , $ (05:1) $ , $ (06:1) $ .