# 入力された値を文字列で受け取る str = gets.chomp # min_by を使う事で要素を変換しつつ最小値を計算する事ができる puts str.split.min_by { _1.to_i }