You are on page 1of 1

# -*- coding: utf-8 -*-

"""
Created on Mon Nov 29 17:14:46 2021

@author: mende
"""

N = int(input("Digite N: "))
med = 0
soma = 0
for x in range(0,N):
a = int(input("Numero: "))
soma += a
med = soma/N
print(med)

You might also like