def calculate_cards(cards): total= 0 for card in cards: total = total + card return total print(calculate_cards([11,7,5]))