s = gets.chomp cnt = [0, 0, 0] s.split('').map { |c| ['t', 'r', 'e'].each_index { |i| cnt[i] += 1 if ['t', 'r', 'e'][i] == c } } cnt[2] /= 2 puts cnt.min