x=gets.chomp a="" b="" x.chars{|e| e=e.to_i if e<7 a=a+"0" b=b+e.to_s elsif e==7 a=a+"1" b=b+"6" else t=e-6 a=a+t.to_s b=b+"6" end } puts [a.to_i,b.to_i]*" "