S = input().strip() T = 0 R = 0 E = 0 for i in S: if i == 't': T += 1 elif i == 'r': R += 1 elif i == 'e': E += 1 print(min(T, R, E // 2))