summaryrefslogtreecommitdiff
path: root/progs/a782.py
blob: eaaeb958aaad33ff68d8cfebceaa3905d6b51846 (plain)
1
2
3
4
def round_and_sum(list1):
  lenght=len(list1)
  round_and_sum=sum(list(map(round,list1))* lenght)
  return round_and_sum