Understand the Gilded Rose Item properties and update logic
mainThe Gilded Rose system manages inventory items using a specific set of rules. All items are represented by an Item class with two primary properties:
SellIn: An integer representing the number of days remaining to sell the item.quality: An integer representing the item's value.
At the end of each day, the system calls the updateQuality method to decrement the SellIn value and adjust the quality based on the item's specific rules.