compile: agent.c customer.c
	gcc -Wall -o agent agent.c
	gcc -Wall -o customer customer.c

run: compile
	./agent 40 16

clean:
	-rm -f agent customer request.txt
