CXXFLAGS=-Wall -g 
all: tuition
clean:
	@rm -vf tuition

test: all
	./tuition < test_run.txt

debug: all
	gdb tuition
