#  c1 c2             | j  up to n
#               | b1 |
#  aij*xj <= bi | b2 |
#               |    |
#               | i up to m


3 5 2 4 1   
2 4 1 3 2  100
1 3 2 1 5  150

# answer of https://cbom.atozmath.com
# optimal solution is arrived with value of variables as :
# x1=16.6667,x2=0,x3=66.6667,x4=0,x5=0
# Max Z=183.3333

#x1 =0,x2 =25, X3=0, X4 = 0, X5=0 ,z=125
#   3x1 + 5x2 + 2x3 + 4x4 + 1x5
#   2x1  + 4x2 + 1x3 +  3x4 + 2x5 <= 100
#   1x1 +3x2 +2x3 +1x4 +5x5  <=150