π Dictionaries π₯ Input π’ Type Conversion

Part A: Use input() to ask "How much Robux do you have? "
robuxPart B: Create the same catalog dictionary from Exercise 1.
Part C: Print all items with a for loop:
Part D: Check if you can afford an item:
if item in catalog:if robux >= catalog[item]:
Example Output:
How much Robux do you have? 20000
You have 20000 Robux!
=== CATALOG ===
Dominus: 50000 Robux
Sparkle Time Fedora: 15000 Robux
Valkyrie Helm: 25000 Robux
Rainbow Wings: 8000 Robux
Golden Crown: 12000 Robux
Which item do you want to check? Golden Crown
You CAN afford Golden Crown!
β Standard library: heapq, collections, itertools, math, random, functools, datetime, bisect
β Functions, classes, recursion, print()
β No file system, subprocess, OS access, or network requests
β No pip install (all supported modules are pre-loaded)
β±οΈ 5 second execution time limit