def avg(num1, num2):
    '''(int/float, int/float) -> float
    Takes two numbers and returns their average.'''
    
    return (num1 + num2)/2

x = 4
print "My grade on the first assignment was ", x
print "If I get 0 on the next assignment, my average will be ", avg(0,x)
print "If I get 1 on the next assignment, my average will be ", avg(1,x)
print "If I get 2 on the next assignment, my average will be ", avg(2,x)
print "If I get 3 on the next assignment, my average will be ", avg(3,x)
print "If I get 4 on the next assignment, my average will be ", avg(4,x)
print "If I get 5 on the next assignment, my average will be ", avg(5,x)