I think anyone who applies to a programming job and can’t write this (in whatever language) deserves something worse than being politely turned down.
for i in range(1, 101):
if i % 15 == 0: print 'fizzbuzz'
elif i % 3 == 0: print 'fizz'
elif i % 5 == 0: print 'buzz'
else: print i
I think anyone who applies to a programming job and can’t write this (in whatever language) deserves something worse than being politely turned down.