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