def ascan; gets.split.map(&:to_i); end def scan; gets.to_i; end s = gets.chomp t = "" s.size.times{|i| t << (s[i]=="7" ? "1" : "0") } t = t.to_i u = s.to_i - t puts "#{t} #{u}"