Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.07 KB

File metadata and controls

26 lines (21 loc) · 1.07 KB

Carrot Cake

You are packing boxes of carrots for a farm co-op, and you are supposed to evenly distribute all of the carrots that you have into the boxes. The total number of carrots in each box doesn't matter as long as you distribute them evenly, and there are not enough leftover to put another carrot in each box. Anything that you have left over, you get to keep. You need 7 carrots to make the cake the way that you want to.

Task:

Determine if you will have enough leftover carrots to make your cake.

Input Format:

Two integer values. The first represents the number of carrots that you start with, and the second is the number of boxes that need to be packed into.

Output Format:

A string that says 'Cake Time' if you have enough, or that says 'I need to buy X more' where X is the extra amount you need for your cake.

Sample Input:

100
10

Sample Output:

I need to buy 7 more

Explanation:

You will have zero leftover carrots after you neatly pack 100 carrots evenly into 10 boxes. You need to buy all of the carrots (7) for your cake.