TOPIC

Python 1180 Certo

Weswill asked 2 years ago

-- coding: utf-8 --

a=int(input()) ls=input().split(" ") x=[0]*a for i in range(a): x[i] = int(ls[i]) print("Menor valor: %d"%min(x)) print("Posicao: %d"%x.index(min(x)))

This topic has not been answered yet. Be the first!

Remember not post solutions. Your post may be reviewed by our moderators.