''' DS2000 Spring 2023 Sample code from class 1/10/23 Grizz and Carol average score ''' def main(): # Gather data - get scores for Carol and Grizz (0-10) grizz = int(input("What is Grizz's friendliness score (0-10)?\n")) carol = int(input("What is Carol's friendliness score (0-10)?\n")) # Computation step - average the two scores avg = (grizz + carol) / 2 # Communication - report the average to the user print("The average score was:", int(avg)) main()