#!/usr/bin/ruby

(0..400).each do |f|
  fnum = f.to_s.rjust(5, '0')
  system "convert #{fnum}.png #{fnum}.gif"
end

