N = gets.to_i(16) h = Hash.new(0) N.to_s(8).split(""){|s| h[s.to_i] += 1 } max = h.values.max ans = [] 0.upto(7) {|i| ans << i.to_s if h[i] == max } puts ans.join(" ")