시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB27222520882.540%

문제

Consider a positive integer a. We define weight of a as:

(number of digits in a) * (sum of the digits in a)

For example, if a = 5767, then weight of a is:

(4) * (5 + 7 + 6 + 7) = 100

Given two positive integers, determine which one weighs more, i.e., it is heavier.

입력

There is only one input line; it contains two integers separated by exactly one space (blank). Assume each integer is between 1 and 1,000,000 (inclusive).

출력

Print 1 (one) if the first number is heavier, 2 (two) if the second number is heavier, and 0 (zero) if the two numbers weigh the same.

예제 입력 1

59 1001

예제 출력 1

1

예제 입력 2

8 567

예제 출력 2

2

예제 입력 3

123 90

예제 출력 3

0