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)

def solution(x):
    return x % sum([int(c) for c in str(x)]) == 0

def solution(x, n):
    return [x*i for i in range(1, n+1)]

+ Recent posts