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