build:
	g++ -c *.cpp -o *.o
	g++ -o t *.o
run: build
	./t
edit:
	nano main.cpp
e: edit
r: run