시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB180362620.472%

문제

If we input a number formed by 4 digits and these digits are not all of one same value, then it obeys the following law. Let us operate the number in the following way: 

  1. Arrange the digits in the way from bigger to smaller, such that it forms the biggest number that could be made from these 4 digits; 
  2. Arrange the digits in the way from smaller to bigger, such that it forms the smallest number that could be made from these 4 digits (If there is 0 among these 4 digits, the number obtained may be less than four digits); 
  3. Find the difference of these two numbers that is a new four digital number. 

Repeat the above process, we can finally always get the result 6174 or 0. 

Please write the program to realize the above algorithm. 

입력

Each case is a line of an integer.-1 denotes the end of input.

출력

If the integer is formed exactly by 4 digits and these digits are not all of one same value, then output from the program should show the procedure for finding this number and the number of repetition times. Otherwise output "No!!".

예제 입력 1

5364
2221
4444
-1

예제 출력 1

N=5364:
6543-3456=3087
8730-378=8352
8532-2358=6174
Ok!! 3 times
N=2221:
2221-1222=999
999-999=0
Ok!! 2 times
N=4444:
No!!