#include <cmath>
#include <iostream>

int main() {
	static_assert(std::abs(std::log2(64.) - 6.) < 0.0001, "!");

	return 0;
}