A = [1,2,3,4,5] A = list(map(int, input().split())) A = [int(x) for x in input().split()] sum(list)
Recommended Posts