BYECAKES - Bye Bye Cakes

no tags 

John is moving to a different city and he wants to use all his perishable food before doing it, to avoid wasting. Luckily all he has now is eggs, flour, sugar and milk, so he is going to make his famous cakes and give them to his friends as a goodbye gift. John only knows how to make an entire cake and not half a cake, a third of a cake, or any other portion. So, he will buy whatever is needed of each ingredient so that he can make an integer number of cakes and have nothing left. Of course, he wants to spend as little money as possible. You must help John to decide how much he should buy of each ingredient.

Input

The input contains several test cases. Each test case is described in a single line that contains eight integers E, F, S, M, E', F', S' and M' separated by single spaces. Values E and E' are numbers of eggs, F and F' are grams of flour, S and S' are grams of sugar, and M and M' are centiliters of milk. For each ingredient, X is the amount John has (0 ≤ X ≤ 1000), while X' is the amount needed to make a single cake (1 ≤ X ≤ 1000). The last line of the input contains the number −1 eight times separated by single spaces and should not be processed as a test case.

Output

For each test case output a single line with four non-negative integers separated by single spaces, representing the amount of each ingredient John needs to buy, in the same order and units as the input.

Example

Input:
2 3 4 5 1 1 1 1
3 6 9 0 1 2 3 4
-1 -1 -1 -1 -1 -1 -1 -1

Output: 3 2 1 0
0 0 0 12

hide comments
sanket17: 2019-08-11 11:10:11

Their is no corner case expect e,f,s,m=0
use (int)ceil((float)e/(float)e1) because when we use ceil(a/b) it first convert a/2 to int ceil of that int is also int
costed me 3 Wa

maratha: 2019-07-09 20:32:30

If you are using BS then remember to start from left=0;
silly question.

chirantan_123: 2018-09-12 21:42:26

watch out for a/b ..ceil() in c++ didn't work (in my case)!!
answer for 0 0 0 0 1 3 4 5
is 0 0 0 0
happy coding!

vivek_dwivedi: 2018-06-12 18:52:57

take care in a/b costed me two WA

rohit9934: 2017-05-07 09:47:11

If you get the technique corner test cases will no longer screw you up

scorpion_ajay: 2017-03-08 20:45:20

goof one for corner cases...otherwise easy logic ;)
AC after several WA, RTE bla bla bla.. ;P

nilabja16180: 2017-03-08 11:35:41

2WA, don't forget to consider corner cases!

imperfectboy: 2017-01-29 09:42:00

one of the easiest problem !!! AC in one GO :D !!!

shubham_cs_iet: 2017-01-08 09:40:08

Wrong datatype costed me 1 WA.

davidgalehouse: 2016-11-12 22:16:47

To C# solvers: RemoveEmptyEntries


Added by:Pablo Ariel Heiber
Date:2010-08-19
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS OBJC PERL6 VB.NET
Resource:FCEyN UBA ICPC Selection 2008