# Joe Schmoe
#
# Program    : one.py
# Description: to print a short message and
#              compute a simple value
# Input      : none
# Output     : a message and an integer value

NUM = 100

def main ():
    print ("Where's Kenny? asked Cartman.")
    print ("Oh, NO!  They killed Kenny!\n")
    
    val = NUM + 50                              # example comment        
    print ("The number is:", val)

main()                                          # call main module
