#question 3
numcookies = int(input("How many cookies do you want to make?\n"))

numberOfEggs = (numcookies/24) * 2
cupsOfButter = (numcookies/24)
ouncesOfBrownSugar = (numcookies/24) * 6



print("You will need",     numberOfEggs        , "number of eggs.")
print("You will need",      cupsOfButter     , "cups of butter.")
print("You will need",      ouncesOfBrownSugar     , "ounces of brown sugar.")