#include <iostream>
#include <cmath>
using namespace std;

int main() {
	constexpr int inputs = 1, layers = 2, layerN = 3, output = 1;
	constexpr int how = inputs * layerN + pow(layerN,layers) + output * layerN;
	float w[how];
	return 0;
}