def solution(s):
    if len(s) == 4 or len(s) == 6:
        try:
            if int(s):
                return True
        except:
            return False
    else:
        return False

def solution(arr1, arr2):
    answer = list()
    x, y = len(arr1), len(arr2[0])
    for i in range(x):
        tmp = []
        for j in range(y):
            tmp.append(arr1[i][j] + arr2[i][j])
        answer.append(tmp)
    return answer

arr = []
for i in range(9):
    arr.append(int(input()))
    
print(max(arr))
print(arr.index(max(arr))+1)

A = int(input())
B = int(input())
C = int(input())

mul = A * B * C
mul_list = list(str(mul))

for i in range(10):
    count = mul_list.count(str(i))
    print(count)

+ Recent posts