﻿# This program calculates the average of numbers in
# the 3-element list myList below,
# do semi-uselesss things with variable x,
# and prints “4” twice

myList = [2,5,9]

mySum = myList[0] + myList[1] + myList[2]

myAvg = mySum/3

print(myAvg)
x = 3
y = x + 1
print(y)
x = 4
print(y)

