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