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

문제

My young son is struggling with his maths homework, can you help him please? He is working on the area of a rectangle – you know, area = length x width. His teacher has given him a table of lengths, widths and areas. Each row on the table has one of the 3 values missing; my son has to work out the missing value and write it in the table such that the values on each line represent the length, width and area of one rectangle.

입력

Input is a series of lines, each containing 3 integers, l, w, and a ( 0 ≤ l w ≤100, 0 ≤ a ≤ 10,000) representing the length, width and area of a rectangle in that order. The integers are separated by a single space. In each row, only one of the values has been replaced by a zero. The final row contains 0 0 0 and should not be processed.

출력

Output is the same series of lines but with the zero in each line replaced by the correct value for the length, width or area as appropriate. The new value is always an integer.

예제 입력 1

2 0 6
6 5 0
0 8 80
9 0 45
0 0 0

예제 출력 1

2 3 6
6 5 30
10 8 80
9 5 45