Champu is designing an egg crate for his poultry service website.
The Egg crate holds 30 eggs ( 5 x 6 ). He wants to now provide the functionality for the user to add and remove eggs from the crate using the + and - operators. Help him do the same using operator overloading.
egg_crate + Egg()
should increase the no_of_eggs
in Egg Crate by 1.
egg_crate - Egg()
should reduce the no_of_eggs
in Egg Crate by 1.