Discount sale
Input 1
4
1 1 2 2
Output 1
Input 2
2
10 200
Output 2
210
print("Enter N:") n = int(input()) sum = 0 print("Enter cost of items: ") cost = [int(i) for i in input().split()] for i in range(n): sum+= cost[i] print(sum)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment