https://www.acmicpc.net/problem/1225
a , b = input().split()
a = list(map(int, a))
b = list(map(int, b))
print (sum(a)* sum(b))
#시간초과
a , b = map(list, input().split())
result = 0
for i in a:
for j in b:
result += int(i)*int(j)
print(result)
시간초과로 실패한 풀이
검색해보니 곱하고 더하는것이 아니라 더하고 곱하면 된다고 해서 코드를 변경했다. 결국 같은 값이기 때문에..!!..