#include <stdlib.h>
#include <stdio.h>
#include <math.h>

{coefficients}
{intercepts}

{method}

int main(int argc, const char * argv[]) {{

    /* Features: */
    float features[argc-1];
    int i;
    for (i = 1; i < argc; i++) {{
        features[i-1] = atof(argv[i]);
    }}

    /* Prediction: */
    printf("%d", {method_name}(features));
    return 0;

}}