CF49B.Sum

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya studies positional numeral systems. Unfortunately, he often forgets to write the base of notation in which the expression is written. Once he saw a note in his notebook saying a+b=?a+b=? , and that the base of the positional notation wasn’t written anywhere. Now Vasya has to choose a base pp and regard the expression as written in the base pp positional notation. Vasya understood that he can get different results with different bases, and some bases are even invalid. For example, expression 78+8778+87 in the base 16 positional notation is equal to FF16FF_{16} , in the base 15 positional notation it is equal to 11015110_{15} , in the base 10 one — to 16510165_{10} , in the base 9 one — to 1769176_{9} , and in the base 8 or lesser-based positional notations the expression is invalid as all the numbers should be strictly less than the positional notation base. Vasya got interested in what is the length of the longest possible expression value. Help him to find this length.

The length of a number should be understood as the number of numeric characters in it. For example, the length of the longest answer for 78+87=?78+87=? is 3. It is calculated like that in the base 15 ( 11015110_{15} ), base 10 ( 16510165_{10} ), base 9 ( 1769176_{9} ) positional notations, for example, and in some other ones.

输入格式

The first letter contains two space-separated numbers aa and bb ( 1<=a,b<=10001<=a,b<=1000 ) which represent the given summands.

输出格式

Print a single number — the length of the longest answer.

输入输出样例

  • 输入#1

    78 87
    

    输出#1

    3
    
  • 输入#2

    1 1
    

    输出#2

    2
    
首页