##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 06\06.03 - Presenting numbers.py
# Description: Presenting numbers
##############################################################################
numbers = [0, 0, 0, 0, 0]
x = 0
while x < 5:
numbers[x] = int(input(f"Number {x + 1}:"))
x += 1
while True:
chosen = int (input ("What position do you want to print (0 to exit): "))
if chosen == 0:
break
print(f"You chose number: {numbers [chosen - 1]}")