# File: twoplustwo.py # show the difference between strings and numbers when printing # # Matt Bishop, MHI 289I, Fall 2024 # # # basic printing # # first, the simple way print("2 + 2 =", 2 + 2) # now, with a string print("2 + 2 =", '2 + 2')