问题1121--Prime Land

1121: Prime Land

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

It is really true that all numerical calculations in prime base number system can seem to us a little bit unusual, or even hard. In fact, the children in Prime Land learn to add to subtract numbers several years. On the other hand, multiplication and division is very simple. Recently, somebody has returned from a holiday in the Computer Land where small smart things called computers have been used. It has turned out that they could be used to make addition and subtraction in prime base number system much easier. It has been decided to make an experiment and let a computer to do the operation "minus one". Help people in the Prime Land and write a corresponding program. For practical reasons we will write here the prime base representation as a sequence of such pi and ei from the prime base representation above for which ei >0. We will keep decreasing order with regard to pi.

输入

The input file consists of lines at least one each of which except the last contains prime base representation of just one positive integer greater than 2 and less or equal 32767. All numbers in the line are separated by one space. The last line contains number 0.

输出

The output file contains one line for each but the last line of the input file. If x is a positive integer contained in a line of the input file, the line in the output file will contain x-1 in prime base representation All numbers in the line are separated by one space. There is no line in the output file corresponding to the last "null" line of the input file.

样例输入 Copy

17 1
5 1 2 1
509 1 59 1
0

样例输出 Copy

2 4
3 2
13 1 11 1 7 1 5 1 3 1 2 1

来源/分类