Run ID:110310

提交时间:2025-02-16 13:21:06

n=int(input()) a=input().split() b=input().split() s=0 for i in range(n): s=s+int(a[i])*int(b[i]) print(s)