数列の最小値

  • Python3 の組み込み関数である min() 関数を用いることで簡単に数列の最小値を求めることができます。

input()

a = list(map(int, input().split()))

print(min(a))