The most important use of ranges is to express a sequence
Syntax:
(begin..end) => this construct will include end value
(begin...end) => this construct will exclude end value
or
Range.new(begin,end,exclude_end) => exclude_end is by default false
Most important end value must be gr...