# Author:
# Date: 
# Description: Program to print to some things

# Set values for class prefix and class number
class_prefix = "CSCI"
class = 141
print("Intro to python programming: " class_prefix "class", sep="")

# Set values for zip codes, and calculate difference 
bHamZipCode = "98229"
nycZipCode = 10025
zipDifferences = bHamZipCode - nycZipCode

# Print the difference of the two zip codes
print("bHam zip code minus the NYC zip code is ", zipDifferences, sep="")
