build: mkdir -p build g++ main.cpp -O3 -o ./build/a.out clean: rm -rf build run: just build ./build/a.out