/*
Description: Given a pizza, how many pieces can you get by making n straight cuts (The pieces need not be of equal size). More formally, what is the maximum number of regions R n defined by n lines in the plane?
Write an algorithm that, given a list of n lines representing cuts that divide the plane into R n regions, will provide an equation for a line which divides the plane into R n+1 regions.
An alternate easier coding problem is to, given n, produce a list of n lines that divide the plane into R n regions.
*/