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

#F1201. Robbers' watch

    ID: 1207 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 5 上传者: 标签>枚举组合数学动态规划数学算法思想进阶难度共享题库Codeforces英文题面题目来源题面语言

Robbers' watch

题目描述

A. Robbers' watch
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Input

The first line of the input contains two integers, given in the decimal notation, n and m (1≤n,m≤109)− the number of hours in one day and the number of minutes in one hour, respectively.

Output

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.

Examples
Input
2 3
Output
4
Input
8 2
Output
5
Note

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).


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