CC = gcc
TARGET =

all:: $(TARGET)

test:: all
	sh ./C1378.sh

clean::
	rm -f $(TARGET) *.o
