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

void test(float a, float b, float c) {
    int n = round((c-a) / (b-a));
    for (int i=0; i<=n; i++) {
        printf("%g ", i*(b-a)+a);
    }
    printf("\n");
}

void test(float a, float c) {
    test(a, a+1, c);
}

int main() {
    test(26.0, 26.2, 27.0);
    test(25.5, 30.0);
    test(25.0, 27.0, 32.0);
    return 0;
}