### URL to the relevant documentation I'm following the tutorial at https://docs.quantum.ibm.com/guides/hello-world If I follow [Step 1](https://docs.quantum.ibm.com/guides/hello-world#step-1-map-the-problem-to-a-quantum-native-format) line for line, my script just exits without printing or displaying anything. ### Select all that apply - [ ] typo - [ ] code bug - [ ] out-of-date content - [ ] broken link - [x] other ### Describe the fix. I needed to add the below code to get it to show anything (this wasn't obvious to me). ```code import matplotlib.pyplot as plt plt.show() ```