以下のコードを実行した時の出力順序はどうなりますか? ```ruby let(:value) do puts 'A' 100 end it 'テスト' do puts 'B' expect(value).to eq(100) puts 'C' end ```