s = gets.chomp.split("") s.sort! n = s.size s << s[-1] m = 0 n.times do |i| if s[i] != s[i+1] s[i+1] == s[i+2] ? m = s[i] : m = s[i+1] end end puts m