##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 05\05.1092 - No Title.py
# Description: No Title
##############################################################################
x = 1
sum = 0
while x <= 5:
n = int(input(f"{x} Enter number:"))
sum = sum + n
x = x + 1
print(f"Average: {sum / 5:5.2f}")