#!/usr/bin/env ruby i = 0 while i <99999999999999999 i += 1 if i % 4 == 0 && i % 7 == 0 puts i end end