n = gets.to_i tmp = n.to_s.split('') a = tmp.map{|c| c == ?7 ? ?8 : c}.join.to_i b = -tmp.map{|c| c == ?7 ? ?1 : ?0}.join.to_i puts "#{a} #{b}"