CC = gcc
LDLIBS = -lm

count: count.o 
	gcc -o count count.o 
clean:
	rm -rf *.o count

