# The requirements for the products

REQUIREMENT = {
	1 : 42,
	2 : 5,
	3 : 90,
	4 : 94,
	5 : 49,
	6 : 49,
	7 : 34,
	8 : 90,
	9 : 37,
	10 : 11,
}
# Set of all products
PRODUCTS = REQUIREMENT.keys()
PRODUCTS.sort()

# Set of all locations

LOCATIONS = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
LOCATIONS.sort()

# The capacity of the facilities

CAPACITY = 100
