mod = int(input())
l = list(map(int, input().split()))
assert len(l) == 10
s = sum(l)
print(s % mod)
위와 같은 코드에서 AssertionError이 발생합니다. 데이터를 수정해 주세요.
수정한 이유 :
mod = int(input())
l = list(map(int, input().split()))
assert len(l) == 10
s = sum(l)
print(s % mod)
위와 같은 코드에서 AssertionError이 발생합니다. 데이터를 수정해 주세요.
수정한 이유 :