4 lines
77 B
Python
4 lines
77 B
Python
|
|
for i in xrange(2, 9, 2):
|
||
|
|
print "%d," % i,
|
||
|
|
print "who do we appreciate?"
|