I'm trying to get it so my code will return just the integer of 2 in stead of 2.5464893461251985
def number_of_cookies(amount, height, radius):
return(amount/10)/(radius*radius*3.14158*height)
print (number_of_cookies(40, 0.5, 1))
assert number_of_cookies(40, 0.5, 1) == 2
assert number_of_cookies(400, 0.5, 1) == 25
assert number_of_cookies(1200, 0.3, 1) == 127