101. leap year
101byte→97byte→93byte。
while 1:y=input();print'%d is%s a leap year.'%(y,' not'[:4*(y%4or(not y%100and(y%100or y%400)))])
97byte。一応100切ったがトップははるか遠い。
追記:
while 1:y=input();print y,'is%s a leap year.'%' not'[:4*(y%4or(not y%100and(y%100or y%400)))]
93byte。