//sj 가 아직... A = S 인 등식이 주어진다. 이 때 좌변에 있는 A 숫자 중간에 + 를 넣어 등식을 성립하게 하는 것이다. 단 숫자의 개수는 최소가 되도록 해야 하고 우변에서 만들어지는 수는 무효의 0 이 들어갈 수 있다.
While browsing a math book, Mirko found a strange equation of the form A=S. What makes the equation strange is that A and S are not the same. Mirko realized that the left side of the equation should have addition operations between some pairs of digits in A.
Write a program that inserts the smallest number of addition operations on the left side to make the equation correct. The numbers in the corrected equation may contain arbitrary amounts of leading zeros.
input 143175=120 output 14+31+75=120 input 5025=30 output 5+025=30 input 999899=125 output 9+9+9+89+9=125
출처:2007-2008/regional