0
Fruit bowel
I love learning and want to know peopleās thoughts. How to do it better. How to do it cleaner and quick tricks. Hereās my fruit bowel code fruit = int(input()) #your code goes here i=fruit//2 p=i//3 print (p)
2 Answers
+ 2
james ewell unless you plan to reuse a value you could simply write this as an input and print
print(int(input())//2//3)
0
Okay that makes sense