# 入力された値を文字列で受け取る str = gets.chomp # 各卵の要素を数値の配列に変換する eggs = str.split.map { _1.to_i } # 配列の中から一番小さい要素を抽出する puts eggs.min